From 657546dd3e99729df510cc7f17c5871e918607c0 Mon Sep 17 00:00:00 2001 From: Caleb White Date: Fri, 20 Oct 2023 09:08:49 +0200 Subject: [PATCH] Split parser into php/php_only dialects with common files --- .gitignore | 16 +- Cargo.toml | 10 +- Makefile | 11 +- Package.swift | 20 +- binding.gyp | 8 +- bindings/node/binding.cc | 31 +- bindings/node/index.js | 3 +- bindings/node/php.js | 1 + bindings/node/php_only.js | 1 + bindings/rust/build.rs | 28 +- bindings/rust/lib.rs | 13 +- bindings/swift/TreeSitterPHP/php.h | 1 + common/define-grammar.js | 1594 + src/scanner.c => common/scanner.h | 10 +- common/test/common | 1 + {test => common/test}/corpus/bugs.txt | 0 {test => common/test}/corpus/class.txt | 0 {test => common/test}/corpus/declarations.txt | 0 .../test}/corpus/execution_operator.txt | 0 {test => common/test}/corpus/expressions.txt | 29 +- {test => common/test}/corpus/literals.txt | 12 +- {test => common/test}/corpus/statements.txt | 50 +- {test => common/test}/corpus/string.txt | 0 {test => common/test}/corpus/types.txt | 0 examples/.gitignore | 2 + grammar.js | 1572 - package.json | 20 +- php/grammar.js | 3 + php/package.json | 3 + {src => php/src}/grammar.json | 0 {src => php/src}/node-types.json | 0 {src => php/src}/parser.c | 52 +- php/src/scanner.c | 17 + {src => php/src}/tree_sitter/parser.h | 0 php/test/corpus/common | 1 + {test => php/test}/corpus/interpolation.txt | 49 +- php_only/grammar.js | 3 + php_only/package.json | 11 + php_only/src/grammar.json | 9032 + php_only/src/node-types.json | 5617 + php_only/src/parser.c | 130551 +++++++++++++++ php_only/src/scanner.c | 17 + php_only/src/tree_sitter/parser.h | 224 + php_only/test/corpus/common | 1 + php_only/test/corpus/php_only.txt | 59 + .../test}/highlight/keywords.php | 0 .../test}/highlight/literals.php | 0 {test => php_only/test}/highlight/types.php | 0 48 files changed, 147336 insertions(+), 1737 deletions(-) create mode 100644 bindings/node/php.js create mode 100644 bindings/node/php_only.js create mode 100644 common/define-grammar.js rename src/scanner.c => common/scanner.h (98%) create mode 120000 common/test/common rename {test => common/test}/corpus/bugs.txt (100%) rename {test => common/test}/corpus/class.txt (100%) rename {test => common/test}/corpus/declarations.txt (100%) rename {test => common/test}/corpus/execution_operator.txt (100%) rename {test => common/test}/corpus/expressions.txt (98%) rename {test => common/test}/corpus/literals.txt (85%) rename {test => common/test}/corpus/statements.txt (91%) rename {test => common/test}/corpus/string.txt (100%) rename {test => common/test}/corpus/types.txt (100%) create mode 100644 examples/.gitignore delete mode 100644 grammar.js create mode 100644 php/grammar.js create mode 100644 php/package.json rename {src => php/src}/grammar.json (100%) rename {src => php/src}/node-types.json (100%) rename {src => php/src}/parser.c (99%) create mode 100644 php/src/scanner.c rename {src => php/src}/tree_sitter/parser.h (100%) create mode 120000 php/test/corpus/common rename {test => php/test}/corpus/interpolation.txt (78%) create mode 100644 php_only/grammar.js create mode 100644 php_only/package.json create mode 100644 php_only/src/grammar.json create mode 100644 php_only/src/node-types.json create mode 100644 php_only/src/parser.c create mode 100644 php_only/src/scanner.c create mode 100644 php_only/src/tree_sitter/parser.h create mode 120000 php_only/test/corpus/common create mode 100644 php_only/test/corpus/php_only.txt rename {test => php_only/test}/highlight/keywords.php (100%) rename {test => php_only/test}/highlight/literals.php (100%) rename {test => php_only/test}/highlight/types.php (100%) diff --git a/.gitignore b/.gitignore index bd77f411..7296f73d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,18 @@ node_modules build package-lock.json /target/ -.build/ \ No newline at end of file +.build/ +bindings/c/*.pc +bindings/c/*.h +*.a +*.o +*.so + +# These files would be generated by 'tree-sitter generate' with the default +# settings. We don't want them because there's already a copy at the root. +php/Cargo.toml +php/binding.gyp +php/bindings +php_only/Cargo.toml +php_only/binding.gyp +php_only/bindings diff --git a/Cargo.toml b/Cargo.toml index 1930f4fd..8110c1d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,15 @@ edition = "2021" license = "MIT" build = "bindings/rust/build.rs" -include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] +include = [ + "common", + "bindings/rust", + "php/grammar.js", + "php/src", + "php_only/grammar.js", + "php_only/src", + "queries", +] [lib] path = "bindings/rust/lib.rs" diff --git a/Makefile b/Makefile index ed841544..540dc96f 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,6 @@ VERSION := 0.19.0 -# Repository -SRC_DIR := src - -PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin ) +PARSER_REPO_URL := $(shell git -C $(PWD) remote get-url origin ) ifeq (, $(PARSER_NAME)) PARSER_NAME := $(shell basename $(PARSER_REPO_URL)) @@ -11,6 +8,8 @@ ifeq (, $(PARSER_NAME)) PARSER_NAME := $(subst .git,,$(PARSER_NAME)) endif +SRC_DIR := $(PARSER_NAME)/src + ifeq (, $(PARSER_URL)) PARSER_URL := $(subst :,/,$(PARSER_REPO_URL)) PARSER_URL := $(subst git@,https://,$(PARSER_URL)) @@ -29,7 +28,7 @@ PCLIBDIR ?= $(LIBDIR)/pkgconfig CPPSRC := $(wildcard $(SRC_DIR)/*.cc) ifeq (, $(CPPSRC)) - ADDITIONALLIBS := + ADDITIONALLIBS := else ADDITIONALLIBS := -lc++ endif @@ -71,7 +70,7 @@ endif ifneq (,$(filter $(shell uname),FreeBSD NetBSD DragonFly)) PCLIBDIR := $(PREFIX)/libdata/pkgconfig endif - + all: libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXTVER) bindings/c/$(PARSER_NAME).h bindings/c/tree-sitter-$(PARSER_NAME).pc libtree-sitter-$(PARSER_NAME).a: $(OBJ) diff --git a/Package.swift b/Package.swift index 135e8662..3d0d6da9 100644 --- a/Package.swift +++ b/Package.swift @@ -11,27 +11,17 @@ let package = Package( .target(name: "TreeSitterPHP", path: ".", 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", - "src/scanner.c", + "php/src/parser.c", + "php/src/scanner.c", + "php_only/src/parser.c", + "php_only/src/scanner.c", ], resources: [ .copy("queries") ], publicHeadersPath: "bindings/swift", - cSettings: [.headerSearchPath("src")]) + cSettings: [.headerSearchPath("php/src")]) ] ) diff --git a/binding.gyp b/binding.gyp index 8a07b400..b9d832c2 100644 --- a/binding.gyp +++ b/binding.gyp @@ -4,11 +4,13 @@ "target_name": "tree_sitter_php_binding", "include_dirs": [ " exports, Local module) { - Local tpl = Nan::New(New); - tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - 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); + Local php_tpl = Nan::New(New); + php_tpl->SetClassName(Nan::New("Language").ToLocalChecked()); + php_tpl->InstanceTemplate()->SetInternalFieldCount(1); + Local php_constructor = Nan::GetFunction(php_tpl).ToLocalChecked(); + Local php_instance = php_constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(php_instance, 0, tree_sitter_php()); + Nan::Set(php_instance, Nan::New("name").ToLocalChecked(), Nan::New("php").ToLocalChecked()); + + Local php_only_tpl = Nan::New(New); + php_only_tpl->SetClassName(Nan::New("Language").ToLocalChecked()); + php_only_tpl->InstanceTemplate()->SetInternalFieldCount(1); + Local php_only_constructor = Nan::GetFunction(php_only_tpl).ToLocalChecked(); + Local php_only_instance = php_only_constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(php_only_instance, 0, tree_sitter_php_only()); + Nan::Set(php_only_instance, Nan::New("name").ToLocalChecked(), Nan::New("php_only").ToLocalChecked()); + + Nan::Set(exports, Nan::New("php").ToLocalChecked(), php_instance); + Nan::Set(exports, Nan::New("php_only").ToLocalChecked(), php_only_instance); } 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..818c63df 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.php.nodeTypeInfo = require("../../php/src/node-types.json"); + module.exports.php_only.nodeTypeInfo = require("../../php_only/src/node-types.json"); } catch (_) {} diff --git a/bindings/node/php.js b/bindings/node/php.js new file mode 100644 index 00000000..56ca8c1e --- /dev/null +++ b/bindings/node/php.js @@ -0,0 +1 @@ +module.exports = require('./index').php; diff --git a/bindings/node/php_only.js b/bindings/node/php_only.js new file mode 100644 index 00000000..5d146b4b --- /dev/null +++ b/bindings/node/php_only.js @@ -0,0 +1 @@ +module.exports = require('./index').php_only; diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index b177a6bd..de0aa05a 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -1,19 +1,29 @@ fn main() { - let src_dir = std::path::Path::new("src"); + let root_dir = std::path::Path::new("."); + let php_dir = root_dir.join("php").join("src"); + let php_only_dir = root_dir.join("php_only").join("src"); let mut c_config = cc::Build::new(); - c_config.include(src_dir); + c_config.include(&php_dir); 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.join("parser.c"); - c_config.file(&parser_path); - let scanner_path = src_dir.join("scanner.c"); - c_config.file(&scanner_path); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + for path in &[ + php_dir.join("parser.c"), + php_dir.join("scanner.c"), + php_only_dir.join("parser.c"), + php_only_dir.join("scanner.c"), + ] { + c_config.file(&path); + println!("cargo:rerun-if-changed={}", path.to_str().unwrap()); + } - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - c_config.compile("parser"); + println!( + "cargo:rerun-if-changed={}", + root_dir.join("common").join("scanner.h").to_str().unwrap() + ); + + c_config.compile("parser-scanner"); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 7b4e0301..7222d9ae 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -19,19 +19,28 @@ 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. /// /// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { +pub fn language_php() -> Language { unsafe { tree_sitter_php() } } +/// Get the tree-sitter [Language][] for this grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn language_php_only() -> 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 PHP_NODE_TYPES: &'static str = include_str!("../../php/src/node-types.json"); +pub const PHP_ONLY_NODE_TYPES: &'static str = include_str!("../../php_only/src/node-types.json"); // Uncomment these to include any queries that this grammar contains diff --git a/bindings/swift/TreeSitterPHP/php.h b/bindings/swift/TreeSitterPHP/php.h index c2c210f1..62e7b9fe 100644 --- a/bindings/swift/TreeSitterPHP/php.h +++ b/bindings/swift/TreeSitterPHP/php.h @@ -8,6 +8,7 @@ extern "C" { #endif extern TSLanguage *tree_sitter_php(); +extern TSLanguage *tree_sitter_php_only(); #ifdef __cplusplus } diff --git a/common/define-grammar.js b/common/define-grammar.js new file mode 100644 index 00000000..6284c19f --- /dev/null +++ b/common/define-grammar.js @@ -0,0 +1,1594 @@ +/** + * @author Josh Vera + * @author Christian Frøystad + * @author Max Brunsfeld + * @license MIT + */ + +/* eslint-disable arrow-parens */ +/* eslint-disable camelcase */ +/* eslint-disable-next-line spaced-comment */ +/// +// @ts-check + + +const PREC = { + COMMA: -1, + CAST: -1, + LOGICAL_OR_2: 1, + LOGICAL_XOR: 2, + LOGICAL_AND_2: 3, + ASSIGNMENT: 4, + TERNARY: 5, + NULL_COALESCE: 6, + LOGICAL_OR_1: 7, + LOGICAL_AND_1: 8, + BITWISE_OR: 9, + BITWISE_XOR: 10, + BITWISE_AND: 11, + EQUALITY: 12, + INEQUALITY: 13, + CONCAT: 14, + SHIFT: 15, + PLUS: 16, + TIMES: 17, + EXPONENTIAL: 18, + NEG: 19, + INSTANCEOF: 20, + INC: 21, + SCOPE: 22, + NEW: 23, + CALL: 24, + MEMBER: 25, + DEREF: 26, +}; + +module.exports = function defineGrammar(dialect) { + if (dialect !== 'php' && dialect !== 'php_only') { + throw new Error(`Unknown dialect ${dialect}`); + } + + return grammar({ + name: dialect, + + externals: $ => [ + $._automatic_semicolon, + $.encapsed_string_chars, + $.encapsed_string_chars_after_variable, + $.execution_string_chars, + $.execution_string_chars_after_variable, + $.encapsed_string_chars_heredoc, + $.encapsed_string_chars_after_variable_heredoc, + $._eof, + $.heredoc_start, + $.heredoc_end, + $.nowdoc_string, + $.sentinel_error, // Unused token used to indicate error recovery mode + ], + + supertypes: $ => [ + $._statement, + $._expression, + $._primary_expression, + $._type, + $._literal, + ], + + word: $ => $.name, + + conflicts: $ => [ + [$._array_destructing, $.array_creation_expression], + [$._array_destructing_element, $.array_element_initializer], + [$._primary_expression, $._array_destructing_element], + + [$.union_type, $.intersection_type], + [$.intersection_type], + [$.if_statement], + + [$.namespace_name], + [$.heredoc_body], + + [$.namespace_name_as_prefix], + [$.namespace_use_declaration, $.namespace_name_as_prefix], + ], + + inline: $ => [ + $._statement, + $._semicolon, + $._member_name, + $._variable, + $._callable_variable, + $._callable_expression, + $._foreach_value, + $._literal, + $._class_type_designator, + $._variable_name, + ], + + extras: $ => { + const extras = [ + $.comment, + /[\s\uFEFF\u2060\u200B\u00A0]/, + ]; + + if (dialect === 'php') { + extras.push($.text_interpolation); + } + + return extras; + }, + + rules: { + program: $ => { + if (dialect === 'php') { + return seq( + optional($.text), + optional(seq( + $.php_tag, + repeat($._statement), + )), + ); + } + + return seq( + optional($.php_tag), + 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, + $.named_label_statement, + $.expression_statement, + $.if_statement, + $.switch_statement, + $.while_statement, + $.do_statement, + $.for_statement, + $.foreach_statement, + $.goto_statement, + $.continue_statement, + $.break_statement, + $.return_statement, + $.try_statement, + $.declare_statement, + $.echo_statement, + $.unset_statement, + $.const_declaration, + $.function_definition, + $.class_declaration, + $.interface_declaration, + $.trait_declaration, + $.enum_declaration, + $.namespace_definition, + $.namespace_use_declaration, + $.global_declaration, + $.function_static_declaration, + ), + + empty_statement: _ => prec(-1, ';'), + + reference_modifier: _ => '&', + + function_static_declaration: $ => seq( + keyword('static'), + commaSep1($.static_variable_declaration), + $._semicolon, + ), + + static_variable_declaration: $ => seq( + field('name', $.variable_name), + optional(seq( + '=', + field('value', $._expression), + )), + ), + + global_declaration: $ => seq( + keyword('global'), + commaSep1($._variable_name), + $._semicolon, + ), + + namespace_definition: $ => seq( + keyword('namespace'), + choice( + seq( + field('name', $.namespace_name), + $._semicolon, + ), + seq( + field('name', optional($.namespace_name)), + field('body', $.compound_statement), + ), + ), + ), + + namespace_use_declaration: $ => seq( + keyword('use'), + optional(choice(keyword('function'), keyword('const'))), + choice( + seq( + commaSep1($.namespace_use_clause), + ), + seq( + optional('\\'), + $.namespace_name, + '\\', + $.namespace_use_group, + ), + ), + $._semicolon, + ), + + namespace_use_clause: $ => seq( + choice($.name, alias($._reserved_identifier, $.name), $.qualified_name), optional($.namespace_aliasing_clause), + ), + + qualified_name: $ => seq( + $.namespace_name_as_prefix, + $.name, + ), + + namespace_name_as_prefix: $ => choice( + '\\', + seq(optional('\\'), $.namespace_name, '\\'), + seq(keyword('namespace'), '\\'), + seq(keyword('namespace'), optional('\\'), $.namespace_name, '\\'), + ), + + namespace_name: $ => seq($.name, repeat(seq('\\', $.name))), + + namespace_aliasing_clause: $ => seq( + keyword('as'), + $.name, + ), + + namespace_use_group: $ => seq( + '{', + commaSep1($.namespace_use_group_clause), + '}', + ), + + namespace_use_group_clause: $ => seq( + optional(choice(keyword('function'), keyword('const'))), + $.namespace_name, + optional($.namespace_aliasing_clause), + ), + + trait_declaration: $ => seq( + keyword('trait'), + field('name', $.name), + field('body', $.declaration_list), + ), + + interface_declaration: $ => seq( + keyword('interface'), + field('name', $.name), + optional($.base_clause), + field('body', $.declaration_list), + ), + + base_clause: $ => seq( + keyword('extends'), + commaSep1(choice($.name, alias($._reserved_identifier, $.name), $.qualified_name)), + ), + + enum_declaration: $ => prec.right(seq( + optional(field('attributes', $.attribute_list)), + keyword('enum'), + field('name', $.name), + optional(seq(':', alias(choice('string', 'int'), $.primitive_type))), + optional($.class_interface_clause), + field('body', $.enum_declaration_list), + )), + + enum_declaration_list: $ => seq( + '{', + repeat($._enum_member_declaration), + '}', + ), + + _enum_member_declaration: $ => choice( + $.enum_case, + $.method_declaration, + $.use_declaration, + ), + + enum_case: $ => seq( + optional(field('attributes', $.attribute_list)), + keyword('case'), + field('name', $.name), + optional(seq('=', field('value', choice($.string, $.integer)))), + $._semicolon, + ), + + class_declaration: $ => prec.right(seq( + optional(field('attributes', $.attribute_list)), + optional(field('modifier', choice($.final_modifier, $.abstract_modifier))), + optional(field('modifier', $.readonly_modifier)), + keyword('class'), + field('name', $.name), + optional($.base_clause), + optional($.class_interface_clause), + field('body', $.declaration_list), + optional($._semicolon), + )), + + declaration_list: $ => seq( + '{', + repeat($._member_declaration), + '}', + ), + + final_modifier: _ => keyword('final'), + abstract_modifier: _ => keyword('abstract'), + readonly_modifier: _ => keyword('readonly'), + + class_interface_clause: $ => seq( + keyword('implements'), + commaSep1(choice($.name, alias($._reserved_identifier, $.name), $.qualified_name)), + ), + + _member_declaration: $ => choice( + alias($._class_const_declaration, $.const_declaration), + $.property_declaration, + $.method_declaration, + $.use_declaration, + ), + + const_declaration: $ => $._const_declaration, + + _class_const_declaration: $ => seq( + optional(field('attributes', $.attribute_list)), + optional(field('modifier', $.final_modifier)), + $._const_declaration, + ), + + _const_declaration: $ => seq( + optional($.visibility_modifier), + keyword('const'), + commaSep1($.const_element), + $._semicolon, + ), + + property_declaration: $ => seq( + optional(field('attributes', $.attribute_list)), + repeat1($._modifier), + optional(field('type', $._type)), + commaSep1($.property_element), + $._semicolon, + ), + + _modifier: $ => prec.left(choice( + $.var_modifier, + $.visibility_modifier, + $.static_modifier, + $.final_modifier, + $.abstract_modifier, + $.readonly_modifier, + )), + + property_element: $ => seq( + $.variable_name, optional($.property_initializer), + ), + + property_initializer: $ => seq( + '=', $._expression, + ), + + method_declaration: $ => seq( + optional(field('attributes', $.attribute_list)), + repeat($._modifier), + $._function_definition_header, + choice( + field('body', $.compound_statement), + $._semicolon, + ), + ), + + var_modifier: _ => keyword('var', false), + static_modifier: _ => keyword('static'), + + use_declaration: $ => seq( + keyword('use'), + commaSep1(choice($.name, alias($._reserved_identifier, $.name), $.qualified_name)), + choice($.use_list, $._semicolon), + ), + + use_list: $ => seq( + '{', + repeat(seq( + choice( + $.use_instead_of_clause, + $.use_as_clause, + ), + $._semicolon, + )), + '}', + ), + + use_instead_of_clause: $ => prec.left(seq( + choice($.class_constant_access_expression, $.name), + keyword('insteadof'), + $.name, + )), + + use_as_clause: $ => seq( + choice($.class_constant_access_expression, $.name), + keyword('as'), + choice( + seq( + optional($.visibility_modifier), + $.name, + ), + seq( + $.visibility_modifier, + optional($.name), + ), + ), + ), + + visibility_modifier: _ => choice( + keyword('public'), + keyword('protected'), + keyword('private'), + ), + + function_definition: $ => seq( + optional(field('attributes', $.attribute_list)), + $._function_definition_header, + field('body', $.compound_statement), + ), + + _function_definition_header: $ => seq( + keyword('function'), + optional(field('reference_modifier', $.reference_modifier)), + field('name', choice($.name, alias($._reserved_identifier, $.name))), + field('parameters', $.formal_parameters), + optional($._return_type), + ), + + _arrow_function_header: $ => seq( + optional(field('attributes', $.attribute_list)), + optional($.static_modifier), + keyword('fn'), + optional(field('reference_modifier', $.reference_modifier)), + field('parameters', $.formal_parameters), + optional($._return_type), + ), + + arrow_function: $ => seq( + $._arrow_function_header, + '=>', + field('body', $._expression), + ), + + formal_parameters: $ => seq( + '(', + commaSep(choice($.simple_parameter, $.variadic_parameter, $.property_promotion_parameter)), + optional(','), + ')', + ), + + property_promotion_parameter: $ => seq( + optional(field('attributes', $.attribute_list)), + field('visibility', $.visibility_modifier), + field('readonly', optional($.readonly_modifier)), + field('type', optional($._type)), // Note: callable is not a valid type here, but instead of complicating the parser, we defer this checking to any intelligence using the parser + field('name', $.variable_name), + optional(seq( + '=', + field('default_value', $._expression), + )), + ), + + simple_parameter: $ => seq( + optional(field('attributes', $.attribute_list)), + field('type', optional($._type)), + optional(field('reference_modifier', $.reference_modifier)), + field('name', $.variable_name), + optional(seq( + '=', + field('default_value', $._expression), + )), + ), + + variadic_parameter: $ => seq( + optional(field('attributes', $.attribute_list)), + field('type', optional($._type)), + optional(field('reference_modifier', $.reference_modifier)), + '...', + field('name', $.variable_name), + ), + + _type: $ => choice($.union_type, $.intersection_type), + + _types: $ => choice( + $.optional_type, + $.named_type, + $.primitive_type, + ), + + named_type: $ => choice($.name, $.qualified_name), + + optional_type: $ => seq( + '?', + choice( + $.named_type, + $.primitive_type, + ), + ), + + bottom_type: _ => 'never', + + union_type: $ => prec.right(pipeSep1($._types)), + + intersection_type: $ => ampSep1($._types), + + primitive_type: _ => choice( + 'array', + keyword('callable'), // not legal in property types + 'iterable', + 'bool', + 'float', + 'int', + 'string', + 'void', + 'mixed', + 'static', // only legal as a return type + 'false', + 'null', + 'true', + ), + + cast_type: _ => choice( + keyword('array', false), + keyword('binary', false), + keyword('bool', false), + keyword('boolean', false), + keyword('double', false), + keyword('int', false), + keyword('integer', false), + keyword('float', false), + keyword('object', false), + keyword('real', false), + keyword('string', false), + keyword('unset', false), + ), + + _return_type: $ => seq(':', field('return_type', choice($._type, $.bottom_type))), + + const_element: $ => seq( + choice($.name, alias($._reserved_identifier, $.name)), '=', $._expression, + ), + + echo_statement: $ => seq( + keyword('echo'), $._expressions, $._semicolon, + ), + + unset_statement: $ => seq( + 'unset', '(', commaSep1($._variable), ')', $._semicolon, + ), + + declare_statement: $ => seq( + keyword('declare'), '(', $.declare_directive, ')', + choice( + $._statement, + seq(':', repeat($._statement), keyword('enddeclare'), $._semicolon), + $._semicolon), + ), + + declare_directive: $ => seq( + choice('ticks', 'encoding', 'strict_types'), + '=', + $._literal, + ), + + _literal: $ => choice( + $.integer, + $.float, + $._string, + $.boolean, + $.null, + ), + + float: _ => /\d*(_\d+)*((\.\d*(_\d+)*)?([eE][\+-]?\d+(_\d+)*)|(\.\d*(_\d+)*)([eE][\+-]?\d+(_\d+)*)?)/, + + try_statement: $ => seq( + keyword('try'), + field('body', $.compound_statement), + repeat1(choice($.catch_clause, $.finally_clause)), + ), + + catch_clause: $ => seq( + keyword('catch'), + '(', + field('type', $.type_list), + optional(field('name', $.variable_name)), + ')', + field('body', $.compound_statement), + ), + + type_list: $ => pipeSep1($.named_type), + + finally_clause: $ => seq( + keyword('finally'), + field('body', $.compound_statement), + ), + + goto_statement: $ => seq( + keyword('goto'), $.name, $._semicolon, + ), + + continue_statement: $ => seq( + keyword('continue'), optional($._expression), $._semicolon, + ), + + break_statement: $ => seq( + keyword('break'), optional($._expression), $._semicolon, + ), + + integer: _ => { + const decimal = /[1-9]\d*(_\d+)*/; + const octal = /0[oO]?[0-7]*(_[0-7]+)*/; + const hex = /0[xX][0-9a-fA-F]+(_[0-9a-fA-F]+)*/; + const binary = /0[bB][01]+(_[01]+)*/; + return token(choice( + decimal, + octal, + hex, + binary, + )); + }, + + return_statement: $ => seq( + keyword('return'), optional($._expression), $._semicolon, + ), + + throw_expression: $ => seq( + keyword('throw'), + $._expression, + ), + + while_statement: $ => seq( + keyword('while'), + field('condition', $.parenthesized_expression), + choice( + field('body', $._statement), + seq( + field('body', $.colon_block), + keyword('endwhile'), + $._semicolon, + ), + ), + ), + + do_statement: $ => seq( + keyword('do'), + field('body', $._statement), + keyword('while'), + field('condition', $.parenthesized_expression), + $._semicolon, + ), + + for_statement: $ => seq( + keyword('for'), + '(', + optional($._expressions), + ';', + optional($._expressions), + ';', + optional($._expressions), + ')', + choice( + $._semicolon, + $._statement, + seq(':', repeat($._statement), keyword('endfor'), $._semicolon), + ), + ), + + _expressions: $ => choice( + $._expression, + $.sequence_expression, + ), + + sequence_expression: $ => prec(PREC.COMMA, seq( + $._expression, ',', choice($.sequence_expression, $._expression)), + ), + + foreach_statement: $ => seq( + keyword('foreach'), + '(', + $._expression, + keyword('as'), + choice( + alias($.foreach_pair, $.pair), + $._foreach_value, + ), + ')', + choice( + $._semicolon, + field('body', $._statement), + seq( + field('body', $.colon_block), + keyword('endforeach'), + $._semicolon, + ), + ), + ), + + foreach_pair: $ => seq($._expression, '=>', $._foreach_value), + + _foreach_value: $ => choice( + $.by_ref, + $._expression, + $.list_literal, + ), + + if_statement: $ => seq( + keyword('if'), + field('condition', $.parenthesized_expression), + choice( + seq( + field('body', $._statement), + repeat(field('alternative', $.else_if_clause)), + optional(field('alternative', $.else_clause)), + ), + seq( + field('body', $.colon_block), + repeat(field('alternative', alias($.else_if_clause_2, $.else_if_clause))), + optional(field('alternative', alias($.else_clause_2, $.else_clause))), + keyword('endif'), + $._semicolon, + ), + ), + ), + + colon_block: $ => seq( + ':', + repeat($._statement), + ), + + else_if_clause: $ => seq( + keyword('elseif'), + field('condition', $.parenthesized_expression), + field('body', $._statement), + ), + + else_clause: $ => seq( + keyword('else'), + field('body', $._statement), + ), + + else_if_clause_2: $ => seq( + keyword('elseif'), + field('condition', $.parenthesized_expression), + field('body', $.colon_block), + ), + + else_clause_2: $ => seq( + keyword('else'), + field('body', $.colon_block), + ), + + match_expression: $ => seq( + keyword('match'), + field('condition', $.parenthesized_expression), + field('body', $.match_block), + ), + + match_block: $ => prec.left( + seq( + '{', + commaSep( + choice( + $.match_conditional_expression, + $.match_default_expression, + ), + ), + optional(','), + '}', + ), + ), + + match_condition_list: $ => commaSep1($._expression), + + match_conditional_expression: $ => seq( + field('conditional_expressions', $.match_condition_list), + '=>', + field('return_expression', $._expression), + ), + + match_default_expression: $ => seq( + keyword('default'), + '=>', + field('return_expression', $._expression), + ), + + switch_statement: $ => seq( + keyword('switch'), + field('condition', $.parenthesized_expression), + field('body', $.switch_block), + ), + + switch_block: $ => choice( + seq( + '{', + repeat(choice($.case_statement, $.default_statement)), + '}', + ), + seq( + ':', + repeat(choice($.case_statement, $.default_statement)), + keyword('endswitch'), + $._semicolon, + ), + ), + + case_statement: $ => seq( + keyword('case'), + field('value', $._expression), + choice(':', ';'), + repeat($._statement), + ), + + default_statement: $ => seq( + keyword('default'), + choice(':', ';'), + repeat($._statement), + ), + + compound_statement: $ => seq( + '{', + repeat($._statement), + '}', + ), + + named_label_statement: $ => seq( + $.name, + ':', + ), + + expression_statement: $ => seq( + $._expression, + $._semicolon, + ), + + _expression: $ => choice( + $.conditional_expression, + $.match_expression, + $.augmented_assignment_expression, + $.assignment_expression, + $.reference_assignment_expression, + $.yield_expression, + $._unary_expression, + $.binary_expression, + $.include_expression, + $.include_once_expression, + $.require_expression, + $.require_once_expression, + ), + + _unary_expression: $ => choice( + $.clone_expression, + $._primary_expression, + $.exponentiation_expression, + $.unary_op_expression, + $.cast_expression, + ), + + unary_op_expression: $ => choice( + prec(PREC.INC, seq('@', $._expression)), + prec.left(PREC.NEG, seq(choice('+', '-', '~', '!'), $._expression)), + ), + + exponentiation_expression: $ => prec.right(PREC.EXPONENTIAL, seq( + field('left', choice($.clone_expression, $._primary_expression, $.unary_op_expression, $.match_expression)), + '**', + field('right', choice($.exponentiation_expression, $.clone_expression, $.unary_op_expression, $._primary_expression, $.augmented_assignment_expression, $.assignment_expression, $.match_expression, $.cast_expression)), + )), + + clone_expression: $ => seq( + keyword('clone'), $._primary_expression, + ), + + _primary_expression: $ => choice( + $._variable, + $._literal, + $.class_constant_access_expression, + $.qualified_name, + $.name, + $.array_creation_expression, + $.print_intrinsic, + $.anonymous_function_creation_expression, + $.arrow_function, + $.object_creation_expression, + $.update_expression, + $.shell_command_expression, + $.parenthesized_expression, + $.throw_expression, + $.arrow_function, + ), + + parenthesized_expression: $ => seq('(', $._expression, ')'), + + class_constant_access_expression: $ => seq( + $._scope_resolution_qualifier, + '::', + choice($.name, alias($._reserved_identifier, $.name)), + ), + + print_intrinsic: $ => seq( + keyword('print'), $._expression, + ), + + anonymous_function_creation_expression: $ => seq( + optional(field('attributes', $.attribute_list)), + optional(keyword('static')), + keyword('function'), + optional(field('reference_modifier', $.reference_modifier)), + field('parameters', $.formal_parameters), + optional($.anonymous_function_use_clause), + optional($._return_type), + field('body', $.compound_statement), + ), + + anonymous_function_use_clause: $ => seq( + keyword('use'), + '(', + commaSep1(choice(alias($.variable_reference, $.by_ref), $.variable_name)), + optional(','), + ')', + ), + + object_creation_expression: $ => prec.right(PREC.NEW, choice( + seq( + keyword('new'), + $._class_type_designator, + optional($.arguments), + ), + seq( + keyword('new'), + optional(field('attributes', $.attribute_list)), + keyword('class'), + optional($.arguments), + optional($.base_clause), + optional($.class_interface_clause), + $.declaration_list, + ), + )), + + _class_type_designator: $ => choice( + $.qualified_name, + $.name, + alias($._reserved_identifier, $.name), + $.subscript_expression, + $.member_access_expression, + $.nullsafe_member_access_expression, + $.scoped_property_access_expression, + $._variable_name, + ), + + update_expression: $ => prec.left(PREC.INC, choice( + seq($._variable, '++'), + seq($._variable, '--'), + seq('++', $._variable), + seq('--', $._variable), + )), + + cast_expression: $ => prec(PREC.CAST, seq( + '(', field('type', $.cast_type), ')', + field('value', choice($._unary_expression, $.include_expression, $.include_once_expression)), + )), + + cast_variable: $ => prec(PREC.CAST, seq( + '(', field('type', $.cast_type), ')', + field('value', $._variable), + )), + + assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( + field('left', choice( + $._variable, + $.list_literal, + )), + '=', + field('right', $._expression), + )), + + reference_assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( + field('left', choice( + $._variable, + $.list_literal, + )), + '=', + '&', + field('right', $._expression), + )), + + conditional_expression: $ => prec.left(PREC.TERNARY, seq( // TODO: Ternay is non-assossiative after PHP 8 + field('condition', $._expression), + '?', + field('body', optional($._expression)), + ':', + field('alternative', $._expression), + )), + + augmented_assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( + field('left', $._variable), + field('operator', choice( + '**=', + '*=', + '/=', + '%=', + '+=', + '-=', + '.=', + '<<=', + '>>=', + '&=', + '^=', + '|=', + '??=', + )), + field('right', $._expression), + )), + + _variable: $ => choice( + alias($.cast_variable, $.cast_expression), + $._callable_variable, + $.scoped_property_access_expression, + $.member_access_expression, + $.nullsafe_member_access_expression, + ), + + member_access_expression: $ => prec(PREC.MEMBER, seq( + field('object', $._dereferencable_expression), + '->', + $._member_name, + )), + + nullsafe_member_access_expression: $ => prec(PREC.MEMBER, seq( + field('object', $._dereferencable_expression), + '?->', + $._member_name, + )), + + scoped_property_access_expression: $ => prec(PREC.MEMBER, seq( + field('scope', $._scope_resolution_qualifier), + '::', + field('name', $._variable_name), + )), + + list_literal: $ => choice($._list_destructing, $._array_destructing), + + _list_destructing: $ => seq( + keyword('list'), + '(', + commaSep1(optional(choice( + choice(alias($._list_destructing, $.list_literal), $._variable, $.by_ref), + seq($._expression, '=>', choice(alias($._list_destructing, $.list_literal), $._variable, $.by_ref)), + ))), + ')', + ), + + _array_destructing: $ => seq( + '[', + commaSep1(optional($._array_destructing_element)), + ']', + ), + + _array_destructing_element: $ => choice( + choice(alias($._array_destructing, $.list_literal), $._variable, $.by_ref), + seq($._expression, '=>', choice(alias($._array_destructing, $.list_literal), $._variable, $.by_ref)), + ), + + _callable_variable: $ => choice( + $._variable_name, + $.subscript_expression, + $.member_call_expression, + $.nullsafe_member_call_expression, + $.scoped_call_expression, + $.function_call_expression, + ), + + function_call_expression: $ => prec(PREC.CALL, seq( + field('function', choice($.name, alias($._reserved_identifier, $.name), $.qualified_name, $._callable_expression)), + field('arguments', $.arguments), + )), + + _callable_expression: $ => choice( + $._callable_variable, + $.parenthesized_expression, + $.array_creation_expression, + $._string, + ), + + scoped_call_expression: $ => prec(PREC.CALL, seq( + field('scope', $._scope_resolution_qualifier), + '::', + $._member_name, + field('arguments', $.arguments), + )), + + _scope_resolution_qualifier: $ => choice( + $.relative_scope, + $.name, + alias($._reserved_identifier, $.name), + $.qualified_name, + $._dereferencable_expression, + ), + + relative_scope: _ => prec(PREC.SCOPE, choice( + 'self', + 'parent', + keyword('static'), + )), + + variadic_placeholder: _ => '...', + + arguments: $ => seq( + '(', + choice( + seq( + commaSep($.argument), + optional(','), + ), + $.variadic_placeholder, + ), + ')', + ), + + argument: $ => seq( + optional(seq(field('name', $.name), ':')), + optional(field('reference_modifier', $.reference_modifier)), + choice(alias($._reserved_identifier, $.name), $.variadic_unpacking, $._expression), + ), + + member_call_expression: $ => prec(PREC.CALL, seq( + field('object', $._dereferencable_expression), + '->', + $._member_name, + field('arguments', $.arguments), + )), + + nullsafe_member_call_expression: $ => prec(PREC.CALL, seq( + field('object', $._dereferencable_expression), + '?->', + $._member_name, + field('arguments', $.arguments), + )), + + variadic_unpacking: $ => seq('...', $._expression), + + _member_name: $ => choice( + field('name', choice( + alias($._reserved_identifier, $.name), + $.name, + $._variable_name, + )), + seq( + '{', + field('name', $._expression), + '}', + ), + ), + + subscript_expression: $ => seq( + $._dereferencable_expression, + choice( + seq('[', optional($._expression), ']'), + seq('{', $._expression, '}'), + ), + ), + + _dereferencable_expression: $ => prec(PREC.DEREF, choice( + $._variable, + $.class_constant_access_expression, + $.parenthesized_expression, + $.array_creation_expression, + $.name, + alias($._reserved_identifier, $.name), + $.qualified_name, + $._string, + )), + + array_creation_expression: $ => choice( + seq(keyword('array'), '(', commaSep($.array_element_initializer), optional(','), ')'), + seq('[', commaSep($.array_element_initializer), optional(','), ']'), + ), + + attribute_group: $ => seq( + '#[', + commaSep1($.attribute), + optional(','), + ']', + ), + + attribute_list: $ => repeat1($.attribute_group), + + attribute: $ => seq( + choice($.name, alias($._reserved_identifier, $.name), $.qualified_name), + optional(field('parameters', $.arguments)), + ), + + _complex_string_part: $ => seq( + '{', + $._expression, + '}', + ), + + _simple_string_member_access_expression: $ => prec(PREC.MEMBER, seq( + field('object', $.variable_name), + '->', + field('name', $.name), + )), + + _simple_string_subscript_unary_expression: $ => prec.left(seq('-', $.integer)), + + _simple_string_array_access_argument: $ => choice( + $.integer, + alias($._simple_string_subscript_unary_expression, $.unary_op_expression), + $.name, + $.variable_name, + ), + + _simple_string_subscript_expression: $ => prec(PREC.DEREF, seq( + $.variable_name, + seq('[', $._simple_string_array_access_argument, ']'), + )), + + _simple_string_part: $ => choice( + alias($._simple_string_member_access_expression, $.member_access_expression), + $._variable_name, + alias($._simple_string_subscript_expression, $.subscript_expression), + ), + + // Note: remember to also update the is_escapable_sequence method in the + // external scanner whenever changing these rules + escape_sequence: _ => token.immediate(seq( + '\\', + choice( + 'n', + 'r', + 't', + 'v', + 'e', + 'f', + '\\', + /\$/, + '"', + '`', + /[0-7]{1,3}/, + /x[0-9A-Fa-f]{1,2}/, + /u{[0-9A-Fa-f]+}/, + ), + )), + + _interpolated_string_body: $ => repeat1( + choice( + $.escape_sequence, + seq($.variable_name, alias($.encapsed_string_chars_after_variable, $.string_value)), + alias($.encapsed_string_chars, $.string_value), + $._simple_string_part, + $._complex_string_part, + alias('\\u', $.string_value), + alias('\'', $.string_value), // Needed to avoid the edge case "$b'" from breaking parsing by trying to apply the $.string rule for some reason + ), + ), + + _interpolated_string_body_heredoc: $ => repeat1( + choice( + $.escape_sequence, + seq($.variable_name, alias($.encapsed_string_chars_after_variable_heredoc, $.string_value)), + alias($.encapsed_string_chars_heredoc, $.string_value), + $._simple_string_part, + $._complex_string_part, + alias('\\u', $.string_value), + alias('\'', $.string_value), // Needed to avoid the edge case "$b'" from breaking parsing by trying to apply the $.string rule for some reason + alias('')), $.string_value), + ), + ), + + encapsed_string: $ => prec.right(seq( + choice( + /[bB]"/, + '"', + ), + optional($._interpolated_string_body), + '"', + )), + + string: $ => seq( + choice( + /[bB]'/, + '\'', + ), + optional($.string_value), + '\'', + ), + + string_value: _ => token(prec(1, repeat1(/\\'|\\\\|\\?[^'\\]/))), // prec(1, ...) is needed to avoid conflict with $.comment + + heredoc_body: $ => seq($._new_line, + repeat1(prec.right( + seq(optional($._new_line), $._interpolated_string_body_heredoc), + )), + ), + + heredoc: $ => seq( + token('<<<'), + field('identifier', choice( + $.heredoc_start, + seq('"', $.heredoc_start, token.immediate('"')), + )), + choice( + seq( + field('value', $.heredoc_body), + $._new_line, + field('end_tag', $.heredoc_end), + ), + seq( + field('value', optional($.heredoc_body)), + field('end_tag', $.heredoc_end), + ), + ), + ), + + // _new_line: _ => choice(token(/\r?\n/), token(/\r/)), + _new_line: _ => /\r?\n|\r/, + + nowdoc_body: $ => seq($._new_line, + choice( + repeat1( + $.nowdoc_string, + ), + alias('', $.nowdoc_string), + ), + ), + + nowdoc: $ => seq( + token('<<<'), + '\'', + field('identifier', $.heredoc_start), + token.immediate('\''), + choice( + seq( + field('value', $.nowdoc_body), + $._new_line, + field('end_tag', $.heredoc_end), + ), + seq( + field('value', optional($.nowdoc_body)), + field('end_tag', $.heredoc_end), + ), + ), + ), + + _interpolated_execution_operator_body: $ => repeat1( + choice( + $.escape_sequence, + seq($.variable_name, alias($.execution_string_chars_after_variable, $.string_value)), + alias($.execution_string_chars, $.string_value), + $._simple_string_part, + $._complex_string_part, + alias('\\u', $.string_value), + ), + ), + + shell_command_expression: $ => seq( + '`', + optional($._interpolated_execution_operator_body), + '`', + ), + + boolean: _ => /true|false/i, + + null: _ => keyword('null', false), + + _string: $ => choice($.encapsed_string, $.string, $.heredoc, $.nowdoc), + + dynamic_variable_name: $ => choice( + seq('$', $._variable_name), + seq('$', '{', $._expression, '}'), + ), + + _variable_name: $ => choice($.dynamic_variable_name, $.variable_name), + + variable_name: $ => seq('$', $.name), + + variable_reference: $ => seq('&', $.variable_name), + by_ref: $ => seq( + '&', + choice( + $._callable_variable, + $.member_access_expression, + $.nullsafe_member_access_expression, + ), + ), + + yield_expression: $ => prec.right(seq( + keyword('yield'), + optional(choice( + $.array_element_initializer, + seq(keyword('from'), $._expression), + )), + )), + + array_element_initializer: $ => prec.right(choice( + choice($.by_ref, $._expression), + seq($._expression, '=>', choice($.by_ref, $._expression)), + $.variadic_unpacking, + )), + + binary_expression: $ => choice( + prec(PREC.INSTANCEOF, seq( + field('left', $._unary_expression), + field('operator', keyword('instanceof')), + field('right', $._class_type_designator), + )), + prec.right(PREC.NULL_COALESCE, seq( + field('left', $._expression), + field('operator', '??'), + field('right', $._expression), + )), + ...[ + [keyword('and'), PREC.LOGICAL_AND_2], + [keyword('or'), PREC.LOGICAL_OR_2], + [keyword('xor'), PREC.LOGICAL_XOR], + ['||', PREC.LOGICAL_OR_1], + ['&&', PREC.LOGICAL_AND_1], + ['|', PREC.BITWISE_OR], + ['^', PREC.BITWISE_XOR], + ['&', PREC.BITWISE_AND], + ['==', PREC.EQUALITY], + ['!=', PREC.EQUALITY], + ['<>', PREC.EQUALITY], + ['===', PREC.EQUALITY], + ['!==', PREC.EQUALITY], + ['<', PREC.INEQUALITY], + ['>', PREC.INEQUALITY], + ['<=', PREC.INEQUALITY], + ['>=', PREC.INEQUALITY], + ['<=>', PREC.EQUALITY], + ['<<', PREC.SHIFT], + ['>>', PREC.SHIFT], + ['+', PREC.PLUS], + ['-', PREC.PLUS], + ['.', PREC.CONCAT], + ['*', PREC.TIMES], + ['/', PREC.TIMES], + ['%', PREC.TIMES], + // @ts-ignore + ].map(([op, p]) => prec.left(p, seq( + field('left', $._expression), + // @ts-ignore + field('operator', op), + field('right', $._expression), + ))), + ), + + include_expression: $ => seq( + keyword('include'), + $._expression, + ), + + include_once_expression: $ => seq( + keyword('include_once'), + $._expression, + ), + + require_expression: $ => seq( + keyword('require'), + $._expression, + ), + + require_once_expression: $ => seq( + keyword('require_once'), + $._expression, + ), + + name: _ => /[_a-zA-Z\u00A1-\u00ff][_a-zA-Z\u00A1-\u00ff\d]*/, + + _reserved_identifier: _ => choice( + 'self', + 'parent', + keyword('static'), + ), + + comment: _ => token(choice( + seq( + choice('//', /#[^?\[?\r?\n]/), + repeat(/[^?\r?\n]|\?[^>\r\n]/), + optional(/\?\r?\n/), + ), + '#', + seq( + '/*', + /[^*]*\*+([^/*][^*]*\*+)*/, + '/', + ), + )), + + _semicolon: $ => choice($._automatic_semicolon, ';'), + }, + }); +}; + +/** + * Creates a regex that matches the given word case-insensitively, + * and will alias the regex to the word if aliasAsWord is true + * + * @param {string} word + * @param {boolean} aliasAsWord? + * + * @return {RegExp|AliasRule} + */ +function keyword(word, aliasAsWord = true) { + /** @type {RegExp|AliasRule} */ + let result = new RegExp(word, 'i'); + if (aliasAsWord) result = alias(result, word); + return result; +} + +/** + * Creates a rule to match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @return {SeqRule} + * + */ +function commaSep1(rule) { + return seq(rule, repeat(seq(',', rule))); +} + +/** + * Creates a rule to optionally match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @return {ChoiceRule} + * + */ +function commaSep(rule) { + return optional(commaSep1(rule)); +} + +/** + * Creates a rule to match one or more of the rules separated by a pipe + * + * @param {Rule} rule + * + * @return {SeqRule} + */ +function pipeSep1(rule) { + return seq(rule, repeat(seq('|', rule))); +} + +/** + * Creates a rule to match one or more of the rules separated by an ampersand + * + * @param {Rule} rule + * + * @return {SeqRule} + */ +function ampSep1(rule) { + return seq(rule, repeat(seq(token('&'), rule))); +} diff --git a/src/scanner.c b/common/scanner.h similarity index 98% rename from src/scanner.c rename to common/scanner.h index 6b60003b..5e853d75 100644 --- a/src/scanner.c +++ b/common/scanner.h @@ -553,28 +553,28 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return false; } -void *tree_sitter_php_external_scanner_create() { +static inline void *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, char *buffer) { +static inline unsigned external_scanner_serialize(void *payload, char *buffer) { Scanner *scanner = (Scanner *)payload; return serialize(scanner, buffer); } -void tree_sitter_php_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { +static inline void 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, const bool *valid_symbols) { +static inline bool 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) { +static inline void 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/common/test/common b/common/test/common new file mode 120000 index 00000000..d66298e1 --- /dev/null +++ b/common/test/common @@ -0,0 +1 @@ +common \ No newline at end of file diff --git a/test/corpus/bugs.txt b/common/test/corpus/bugs.txt similarity index 100% rename from test/corpus/bugs.txt rename to common/test/corpus/bugs.txt diff --git a/test/corpus/class.txt b/common/test/corpus/class.txt similarity index 100% rename from test/corpus/class.txt rename to common/test/corpus/class.txt diff --git a/test/corpus/declarations.txt b/common/test/corpus/declarations.txt similarity index 100% rename from test/corpus/declarations.txt rename to common/test/corpus/declarations.txt diff --git a/test/corpus/execution_operator.txt b/common/test/corpus/execution_operator.txt similarity index 100% rename from test/corpus/execution_operator.txt rename to common/test/corpus/execution_operator.txt diff --git a/test/corpus/expressions.txt b/common/test/corpus/expressions.txt similarity index 98% rename from test/corpus/expressions.txt rename to common/test/corpus/expressions.txt index 76a48a27..274ad1d1 100644 --- a/test/corpus/expressions.txt +++ b/common/test/corpus/expressions.txt @@ -402,7 +402,6 @@ Associativity of conditional --- @@ -415,8 +414,7 @@ true ? false : true ? "a" : "b"; (boolean) (boolean)) (encapsed_string (string_value)) - (encapsed_string (string_value)))) - (text_interpolation)) + (encapsed_string (string_value))))) ================================================= Associativity of null-coalescence @@ -424,7 +422,6 @@ Associativity of null-coalescence --- @@ -435,8 +432,7 @@ NULL ?? NULL ?? 1; (null) (binary_expression (null) - (integer)))) - (text_interpolation)) + (integer))))) ========================================= Associativity of negation @@ -445,7 +441,6 @@ Associativity of negation --- @@ -462,8 +457,7 @@ Associativity of negation (binary_expression (variable_name (name)) - (name)))) - (text_interpolation)) + (name))))) ==================================== Augmented assignment @@ -474,7 +468,6 @@ $i .= $j = "a"; $i += $j += 3; $i .= "a" . "b"; "a" . $i .= "b"; -?> --- @@ -509,8 +502,7 @@ $i .= "a" . "b"; (augmented_assignment_expression (variable_name (name)) - (encapsed_string (string_value))))) - (text_interpolation)) + (encapsed_string (string_value)))))) ======================================= Nested assignemnts @@ -649,7 +641,6 @@ Arrays print_r([1, 2, 3]); print_r(["foo" => "orange", "bar" => "apple", "baz" => "lemon"]); $a = [...$values]; -?> --- @@ -678,13 +669,7 @@ $a = [...$values]; (array_creation_expression (array_element_initializer (variadic_unpacking - (variable_name (name)) - ) - ) - ) - ) - ) - (text_interpolation)) + (variable_name (name)))))))) =============================================== Anonymous functions @@ -1020,7 +1005,7 @@ function foo() {} (arguments (variadic_placeholder)) ) ) - + (comment) (expression_statement (object_creation_expression @@ -1028,7 +1013,7 @@ function foo() {} (arguments (variadic_placeholder)) ) ) - + (function_definition (attribute_list (attribute_group diff --git a/test/corpus/literals.txt b/common/test/corpus/literals.txt similarity index 85% rename from test/corpus/literals.txt rename to common/test/corpus/literals.txt index a8f71752..de45741e 100644 --- a/test/corpus/literals.txt +++ b/common/test/corpus/literals.txt @@ -9,7 +9,6 @@ TRUE; false; False; FALSE; -?> --- @@ -20,8 +19,7 @@ FALSE; (expression_statement (boolean)) (expression_statement (boolean)) (expression_statement (boolean)) - (expression_statement (boolean)) - (text_interpolation)) + (expression_statement (boolean))) ========================== Floats @@ -85,14 +83,16 @@ Integers Testing string scanner confirmance ============================== - + - - - ---- - -(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 ============================== @@ -222,7 +176,6 @@ switch ($a) { echo "bad"; break; } -?> --- @@ -238,8 +191,7 @@ switch ($a) { value: (integer) (echo_statement (encapsed_string (string_value))) (break_statement)) (default_statement - (echo_statement (encapsed_string (string_value))) (break_statement)))) - (text_interpolation)) + (echo_statement (encapsed_string (string_value))) (break_statement))))) ============================== Alternative switch statements diff --git a/test/corpus/string.txt b/common/test/corpus/string.txt similarity index 100% rename from test/corpus/string.txt rename to common/test/corpus/string.txt diff --git a/test/corpus/types.txt b/common/test/corpus/types.txt similarity index 100% rename from test/corpus/types.txt rename to common/test/corpus/types.txt diff --git a/examples/.gitignore b/examples/.gitignore new file mode 100644 index 00000000..d6b7ef32 --- /dev/null +++ b/examples/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/grammar.js b/grammar.js deleted file mode 100644 index 671187ff..00000000 --- a/grammar.js +++ /dev/null @@ -1,1572 +0,0 @@ -/** - * @file PHP grammar for tree-sitter - * @author Josh Vera - * @author Christian Frøystad - * @author Max Brunsfeld - * @license MIT - */ - -/* eslint-disable arrow-parens */ -/* eslint-disable camelcase */ -/* eslint-disable-next-line spaced-comment */ -/// -// @ts-check - - -const PREC = { - COMMA: -1, - CAST: -1, - LOGICAL_OR_2: 1, - LOGICAL_XOR: 2, - LOGICAL_AND_2: 3, - ASSIGNMENT: 4, - TERNARY: 5, - NULL_COALESCE: 6, - LOGICAL_OR_1: 7, - LOGICAL_AND_1: 8, - BITWISE_OR: 9, - BITWISE_XOR: 10, - BITWISE_AND: 11, - EQUALITY: 12, - INEQUALITY: 13, - CONCAT: 14, - SHIFT: 15, - PLUS: 16, - TIMES: 17, - EXPONENTIAL: 18, - NEG: 19, - INSTANCEOF: 20, - INC: 21, - SCOPE: 22, - NEW: 23, - CALL: 24, - MEMBER: 25, - DEREF: 26, -}; - -module.exports = grammar({ - name: 'php', - - externals: $ => [ - $._automatic_semicolon, - $.encapsed_string_chars, - $.encapsed_string_chars_after_variable, - $.execution_string_chars, - $.execution_string_chars_after_variable, - $.encapsed_string_chars_heredoc, - $.encapsed_string_chars_after_variable_heredoc, - $._eof, - $.heredoc_start, - $.heredoc_end, - $.nowdoc_string, - $.sentinel_error, // Unused token used to indicate error recovery mode - ], - - supertypes: $ => [ - $._statement, - $._expression, - $._primary_expression, - $._type, - $._literal, - ], - - word: $ => $.name, - - conflicts: $ => [ - [$._array_destructing, $.array_creation_expression], - [$._array_destructing_element, $.array_element_initializer], - [$._primary_expression, $._array_destructing_element], - - [$.union_type, $.intersection_type], - [$.intersection_type], - [$.if_statement], - - [$.namespace_name], - [$.heredoc_body], - - [$.namespace_name_as_prefix], - [$.namespace_use_declaration, $.namespace_name_as_prefix], - ], - - inline: $ => [ - $._statement, - $._semicolon, - $._member_name, - $._variable, - $._callable_variable, - $._callable_expression, - $._foreach_value, - $._literal, - $._class_type_designator, - $._variable_name, - ], - - extras: $ => [ - $.comment, - /[\s\uFEFF\u2060\u200B\u00A0]/, - $.text_interpolation, - ], - - rules: { - program: $ => seq( - optional($.text), - optional(seq( - $.php_tag, - repeat($._statement), - )), - ), - - 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, - $.named_label_statement, - $.expression_statement, - $.if_statement, - $.switch_statement, - $.while_statement, - $.do_statement, - $.for_statement, - $.foreach_statement, - $.goto_statement, - $.continue_statement, - $.break_statement, - $.return_statement, - $.try_statement, - $.declare_statement, - $.echo_statement, - $.unset_statement, - $.const_declaration, - $.function_definition, - $.class_declaration, - $.interface_declaration, - $.trait_declaration, - $.enum_declaration, - $.namespace_definition, - $.namespace_use_declaration, - $.global_declaration, - $.function_static_declaration, - ), - - empty_statement: _ => prec(-1, ';'), - - reference_modifier: _ => '&', - - function_static_declaration: $ => seq( - keyword('static'), - commaSep1($.static_variable_declaration), - $._semicolon, - ), - - static_variable_declaration: $ => seq( - field('name', $.variable_name), - optional(seq( - '=', - field('value', $._expression), - )), - ), - - global_declaration: $ => seq( - keyword('global'), - commaSep1($._variable_name), - $._semicolon, - ), - - namespace_definition: $ => seq( - keyword('namespace'), - choice( - seq( - field('name', $.namespace_name), - $._semicolon, - ), - seq( - field('name', optional($.namespace_name)), - field('body', $.compound_statement), - ), - ), - ), - - namespace_use_declaration: $ => seq( - keyword('use'), - optional(choice(keyword('function'), keyword('const'))), - choice( - seq( - commaSep1($.namespace_use_clause), - ), - seq( - optional('\\'), - $.namespace_name, - '\\', - $.namespace_use_group, - ), - ), - $._semicolon, - ), - - namespace_use_clause: $ => seq( - choice($.name, alias($._reserved_identifier, $.name), $.qualified_name), optional($.namespace_aliasing_clause), - ), - - qualified_name: $ => seq( - $.namespace_name_as_prefix, - $.name, - ), - - namespace_name_as_prefix: $ => choice( - '\\', - seq(optional('\\'), $.namespace_name, '\\'), - seq(keyword('namespace'), '\\'), - seq(keyword('namespace'), optional('\\'), $.namespace_name, '\\'), - ), - - namespace_name: $ => seq($.name, repeat(seq('\\', $.name))), - - namespace_aliasing_clause: $ => seq( - keyword('as'), - $.name, - ), - - namespace_use_group: $ => seq( - '{', - commaSep1($.namespace_use_group_clause), - '}', - ), - - namespace_use_group_clause: $ => seq( - optional(choice(keyword('function'), keyword('const'))), - $.namespace_name, - optional($.namespace_aliasing_clause), - ), - - trait_declaration: $ => seq( - keyword('trait'), - field('name', $.name), - field('body', $.declaration_list), - ), - - interface_declaration: $ => seq( - keyword('interface'), - field('name', $.name), - optional($.base_clause), - field('body', $.declaration_list), - ), - - base_clause: $ => seq( - keyword('extends'), - commaSep1(choice($.name, alias($._reserved_identifier, $.name), $.qualified_name)), - ), - - enum_declaration: $ => prec.right(seq( - optional(field('attributes', $.attribute_list)), - keyword('enum'), - field('name', $.name), - optional(seq(':', alias(choice('string', 'int'), $.primitive_type))), - optional($.class_interface_clause), - field('body', $.enum_declaration_list), - )), - - enum_declaration_list: $ => seq( - '{', - repeat($._enum_member_declaration), - '}', - ), - - _enum_member_declaration: $ => choice( - $.enum_case, - $.method_declaration, - $.use_declaration, - ), - - enum_case: $ => seq( - optional(field('attributes', $.attribute_list)), - keyword('case'), - field('name', $.name), - optional(seq('=', field('value', choice($.string, $.integer)))), - $._semicolon, - ), - - class_declaration: $ => prec.right(seq( - optional(field('attributes', $.attribute_list)), - optional(field('modifier', choice($.final_modifier, $.abstract_modifier))), - optional(field('modifier', $.readonly_modifier)), - keyword('class'), - field('name', $.name), - optional($.base_clause), - optional($.class_interface_clause), - field('body', $.declaration_list), - optional($._semicolon), - )), - - declaration_list: $ => seq( - '{', - repeat($._member_declaration), - '}', - ), - - final_modifier: _ => keyword('final'), - abstract_modifier: _ => keyword('abstract'), - readonly_modifier: _ => keyword('readonly'), - - class_interface_clause: $ => seq( - keyword('implements'), - commaSep1(choice($.name, alias($._reserved_identifier, $.name), $.qualified_name)), - ), - - _member_declaration: $ => choice( - alias($._class_const_declaration, $.const_declaration), - $.property_declaration, - $.method_declaration, - $.use_declaration, - ), - - const_declaration: $ => $._const_declaration, - - _class_const_declaration: $ => seq( - optional(field('attributes', $.attribute_list)), - optional(field('modifier', $.final_modifier)), - $._const_declaration, - ), - - _const_declaration: $ => seq( - optional($.visibility_modifier), - keyword('const'), - commaSep1($.const_element), - $._semicolon, - ), - - property_declaration: $ => seq( - optional(field('attributes', $.attribute_list)), - repeat1($._modifier), - optional(field('type', $._type)), - commaSep1($.property_element), - $._semicolon, - ), - - _modifier: $ => prec.left(choice( - $.var_modifier, - $.visibility_modifier, - $.static_modifier, - $.final_modifier, - $.abstract_modifier, - $.readonly_modifier, - )), - - property_element: $ => seq( - $.variable_name, optional($.property_initializer), - ), - - property_initializer: $ => seq( - '=', $._expression, - ), - - method_declaration: $ => seq( - optional(field('attributes', $.attribute_list)), - repeat($._modifier), - $._function_definition_header, - choice( - field('body', $.compound_statement), - $._semicolon, - ), - ), - - var_modifier: _ => keyword('var', false), - static_modifier: _ => keyword('static'), - - use_declaration: $ => seq( - keyword('use'), - commaSep1(choice($.name, alias($._reserved_identifier, $.name), $.qualified_name)), - choice($.use_list, $._semicolon), - ), - - use_list: $ => seq( - '{', - repeat(seq( - choice( - $.use_instead_of_clause, - $.use_as_clause, - ), - $._semicolon, - )), - '}', - ), - - use_instead_of_clause: $ => prec.left(seq( - choice($.class_constant_access_expression, $.name), - keyword('insteadof'), - $.name, - )), - - use_as_clause: $ => seq( - choice($.class_constant_access_expression, $.name), - keyword('as'), - choice( - seq( - optional($.visibility_modifier), - $.name, - ), - seq( - $.visibility_modifier, - optional($.name), - ), - ), - ), - - visibility_modifier: _ => choice( - keyword('public'), - keyword('protected'), - keyword('private'), - ), - - function_definition: $ => seq( - optional(field('attributes', $.attribute_list)), - $._function_definition_header, - field('body', $.compound_statement), - ), - - _function_definition_header: $ => seq( - keyword('function'), - optional(field('reference_modifier', $.reference_modifier)), - field('name', choice($.name, alias($._reserved_identifier, $.name))), - field('parameters', $.formal_parameters), - optional($._return_type), - ), - - _arrow_function_header: $ => seq( - optional(field('attributes', $.attribute_list)), - optional($.static_modifier), - keyword('fn'), - optional(field('reference_modifier', $.reference_modifier)), - field('parameters', $.formal_parameters), - optional($._return_type), - ), - - arrow_function: $ => seq( - $._arrow_function_header, - '=>', - field('body', $._expression), - ), - - formal_parameters: $ => seq( - '(', - commaSep(choice($.simple_parameter, $.variadic_parameter, $.property_promotion_parameter)), - optional(','), - ')', - ), - - property_promotion_parameter: $ => seq( - optional(field('attributes', $.attribute_list)), - field('visibility', $.visibility_modifier), - field('readonly', optional($.readonly_modifier)), - field('type', optional($._type)), // Note: callable is not a valid type here, but instead of complicating the parser, we defer this checking to any intelligence using the parser - field('name', $.variable_name), - optional(seq( - '=', - field('default_value', $._expression), - )), - ), - - simple_parameter: $ => seq( - optional(field('attributes', $.attribute_list)), - field('type', optional($._type)), - optional(field('reference_modifier', $.reference_modifier)), - field('name', $.variable_name), - optional(seq( - '=', - field('default_value', $._expression), - )), - ), - - variadic_parameter: $ => seq( - optional(field('attributes', $.attribute_list)), - field('type', optional($._type)), - optional(field('reference_modifier', $.reference_modifier)), - '...', - field('name', $.variable_name), - ), - - _type: $ => choice($.union_type, $.intersection_type), - - _types: $ => choice( - $.optional_type, - $.named_type, - $.primitive_type, - ), - - named_type: $ => choice($.name, $.qualified_name), - - optional_type: $ => seq( - '?', - choice( - $.named_type, - $.primitive_type, - ), - ), - - bottom_type: _ => 'never', - - union_type: $ => prec.right(pipeSep1($._types)), - - intersection_type: $ => ampSep1($._types), - - primitive_type: _ => choice( - 'array', - keyword('callable'), // not legal in property types - 'iterable', - 'bool', - 'float', - 'int', - 'string', - 'void', - 'mixed', - 'static', // only legal as a return type - 'false', - 'null', - 'true', - ), - - cast_type: _ => choice( - keyword('array', false), - keyword('binary', false), - keyword('bool', false), - keyword('boolean', false), - keyword('double', false), - keyword('int', false), - keyword('integer', false), - keyword('float', false), - keyword('object', false), - keyword('real', false), - keyword('string', false), - keyword('unset', false), - ), - - _return_type: $ => seq(':', field('return_type', choice($._type, $.bottom_type))), - - const_element: $ => seq( - choice($.name, alias($._reserved_identifier, $.name)), '=', $._expression, - ), - - echo_statement: $ => seq( - keyword('echo'), $._expressions, $._semicolon, - ), - - unset_statement: $ => seq( - 'unset', '(', commaSep1($._variable), ')', $._semicolon, - ), - - declare_statement: $ => seq( - keyword('declare'), '(', $.declare_directive, ')', - choice( - $._statement, - seq(':', repeat($._statement), keyword('enddeclare'), $._semicolon), - $._semicolon), - ), - - declare_directive: $ => seq( - choice('ticks', 'encoding', 'strict_types'), - '=', - $._literal, - ), - - _literal: $ => choice( - $.integer, - $.float, - $._string, - $.boolean, - $.null, - ), - - float: _ => /\d*(_\d+)*((\.\d*(_\d+)*)?([eE][\+-]?\d+(_\d+)*)|(\.\d*(_\d+)*)([eE][\+-]?\d+(_\d+)*)?)/, - - try_statement: $ => seq( - keyword('try'), - field('body', $.compound_statement), - repeat1(choice($.catch_clause, $.finally_clause)), - ), - - catch_clause: $ => seq( - keyword('catch'), - '(', - field('type', $.type_list), - optional(field('name', $.variable_name)), - ')', - field('body', $.compound_statement), - ), - - type_list: $ => pipeSep1($.named_type), - - finally_clause: $ => seq( - keyword('finally'), - field('body', $.compound_statement), - ), - - goto_statement: $ => seq( - keyword('goto'), $.name, $._semicolon, - ), - - continue_statement: $ => seq( - keyword('continue'), optional($._expression), $._semicolon, - ), - - break_statement: $ => seq( - keyword('break'), optional($._expression), $._semicolon, - ), - - integer: _ => { - const decimal = /[1-9]\d*(_\d+)*/; - const octal = /0[oO]?[0-7]*(_[0-7]+)*/; - const hex = /0[xX][0-9a-fA-F]+(_[0-9a-fA-F]+)*/; - const binary = /0[bB][01]+(_[01]+)*/; - return token(choice( - decimal, - octal, - hex, - binary, - )); - }, - - return_statement: $ => seq( - keyword('return'), optional($._expression), $._semicolon, - ), - - throw_expression: $ => seq( - keyword('throw'), - $._expression, - ), - - while_statement: $ => seq( - keyword('while'), - field('condition', $.parenthesized_expression), - choice( - field('body', $._statement), - seq( - field('body', $.colon_block), - keyword('endwhile'), - $._semicolon, - ), - ), - ), - - do_statement: $ => seq( - keyword('do'), - field('body', $._statement), - keyword('while'), - field('condition', $.parenthesized_expression), - $._semicolon, - ), - - for_statement: $ => seq( - keyword('for'), - '(', - optional($._expressions), - ';', - optional($._expressions), - ';', - optional($._expressions), - ')', - choice( - $._semicolon, - $._statement, - seq(':', repeat($._statement), keyword('endfor'), $._semicolon), - ), - ), - - _expressions: $ => choice( - $._expression, - $.sequence_expression, - ), - - sequence_expression: $ => prec(PREC.COMMA, seq( - $._expression, ',', choice($.sequence_expression, $._expression)), - ), - - foreach_statement: $ => seq( - keyword('foreach'), - '(', - $._expression, - keyword('as'), - choice( - alias($.foreach_pair, $.pair), - $._foreach_value, - ), - ')', - choice( - $._semicolon, - field('body', $._statement), - seq( - field('body', $.colon_block), - keyword('endforeach'), - $._semicolon, - ), - ), - ), - - foreach_pair: $ => seq($._expression, '=>', $._foreach_value), - - _foreach_value: $ => choice( - $.by_ref, - $._expression, - $.list_literal, - ), - - if_statement: $ => seq( - keyword('if'), - field('condition', $.parenthesized_expression), - choice( - seq( - field('body', $._statement), - repeat(field('alternative', $.else_if_clause)), - optional(field('alternative', $.else_clause)), - ), - seq( - field('body', $.colon_block), - repeat(field('alternative', alias($.else_if_clause_2, $.else_if_clause))), - optional(field('alternative', alias($.else_clause_2, $.else_clause))), - keyword('endif'), - $._semicolon, - ), - ), - ), - - colon_block: $ => seq( - ':', - repeat($._statement), - ), - - else_if_clause: $ => seq( - keyword('elseif'), - field('condition', $.parenthesized_expression), - field('body', $._statement), - ), - - else_clause: $ => seq( - keyword('else'), - field('body', $._statement), - ), - - else_if_clause_2: $ => seq( - keyword('elseif'), - field('condition', $.parenthesized_expression), - field('body', $.colon_block), - ), - - else_clause_2: $ => seq( - keyword('else'), - field('body', $.colon_block), - ), - - match_expression: $ => seq( - keyword('match'), - field('condition', $.parenthesized_expression), - field('body', $.match_block), - ), - - match_block: $ => prec.left( - seq( - '{', - commaSep( - choice( - $.match_conditional_expression, - $.match_default_expression, - ), - ), - optional(','), - '}', - ), - ), - - match_condition_list: $ => commaSep1($._expression), - - match_conditional_expression: $ => seq( - field('conditional_expressions', $.match_condition_list), - '=>', - field('return_expression', $._expression), - ), - - match_default_expression: $ => seq( - keyword('default'), - '=>', - field('return_expression', $._expression), - ), - - switch_statement: $ => seq( - keyword('switch'), - field('condition', $.parenthesized_expression), - field('body', $.switch_block), - ), - - switch_block: $ => choice( - seq( - '{', - repeat(choice($.case_statement, $.default_statement)), - '}', - ), - seq( - ':', - repeat(choice($.case_statement, $.default_statement)), - keyword('endswitch'), - $._semicolon, - ), - ), - - case_statement: $ => seq( - keyword('case'), - field('value', $._expression), - choice(':', ';'), - repeat($._statement), - ), - - default_statement: $ => seq( - keyword('default'), - choice(':', ';'), - repeat($._statement), - ), - - compound_statement: $ => seq( - '{', - repeat($._statement), - '}', - ), - - named_label_statement: $ => seq( - $.name, - ':', - ), - - expression_statement: $ => seq( - $._expression, - $._semicolon, - ), - - _expression: $ => choice( - $.conditional_expression, - $.match_expression, - $.augmented_assignment_expression, - $.assignment_expression, - $.reference_assignment_expression, - $.yield_expression, - $._unary_expression, - $.binary_expression, - $.include_expression, - $.include_once_expression, - $.require_expression, - $.require_once_expression, - ), - - _unary_expression: $ => choice( - $.clone_expression, - $._primary_expression, - $.exponentiation_expression, - $.unary_op_expression, - $.cast_expression, - ), - - unary_op_expression: $ => choice( - prec(PREC.INC, seq('@', $._expression)), - prec.left(PREC.NEG, seq(choice('+', '-', '~', '!'), $._expression)), - ), - - exponentiation_expression: $ => prec.right(PREC.EXPONENTIAL, seq( - field('left', choice($.clone_expression, $._primary_expression, $.unary_op_expression, $.match_expression)), - '**', - field('right', choice($.exponentiation_expression, $.clone_expression, $.unary_op_expression, $._primary_expression, $.augmented_assignment_expression, $.assignment_expression, $.match_expression, $.cast_expression)), - )), - - clone_expression: $ => seq( - keyword('clone'), $._primary_expression, - ), - - _primary_expression: $ => choice( - $._variable, - $._literal, - $.class_constant_access_expression, - $.qualified_name, - $.name, - $.array_creation_expression, - $.print_intrinsic, - $.anonymous_function_creation_expression, - $.arrow_function, - $.object_creation_expression, - $.update_expression, - $.shell_command_expression, - $.parenthesized_expression, - $.throw_expression, - $.arrow_function, - ), - - parenthesized_expression: $ => seq('(', $._expression, ')'), - - class_constant_access_expression: $ => seq( - $._scope_resolution_qualifier, - '::', - choice($.name, alias($._reserved_identifier, $.name)), - ), - - print_intrinsic: $ => seq( - keyword('print'), $._expression, - ), - - anonymous_function_creation_expression: $ => seq( - optional(field('attributes', $.attribute_list)), - optional(keyword('static')), - keyword('function'), - optional(field('reference_modifier', $.reference_modifier)), - field('parameters', $.formal_parameters), - optional($.anonymous_function_use_clause), - optional($._return_type), - field('body', $.compound_statement), - ), - - anonymous_function_use_clause: $ => seq( - keyword('use'), - '(', - commaSep1(choice(alias($.variable_reference, $.by_ref), $.variable_name)), - optional(','), - ')', - ), - - object_creation_expression: $ => prec.right(PREC.NEW, choice( - seq( - keyword('new'), - $._class_type_designator, - optional($.arguments), - ), - seq( - keyword('new'), - optional(field('attributes', $.attribute_list)), - keyword('class'), - optional($.arguments), - optional($.base_clause), - optional($.class_interface_clause), - $.declaration_list, - ), - )), - - _class_type_designator: $ => choice( - $.qualified_name, - $.name, - alias($._reserved_identifier, $.name), - $.subscript_expression, - $.member_access_expression, - $.nullsafe_member_access_expression, - $.scoped_property_access_expression, - $._variable_name, - ), - - update_expression: $ => prec.left(PREC.INC, choice( - seq($._variable, '++'), - seq($._variable, '--'), - seq('++', $._variable), - seq('--', $._variable), - )), - - cast_expression: $ => prec(PREC.CAST, seq( - '(', field('type', $.cast_type), ')', - field('value', choice($._unary_expression, $.include_expression, $.include_once_expression)), - )), - - cast_variable: $ => prec(PREC.CAST, seq( - '(', field('type', $.cast_type), ')', - field('value', $._variable), - )), - - assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( - field('left', choice( - $._variable, - $.list_literal, - )), - '=', - field('right', $._expression), - )), - - reference_assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( - field('left', choice( - $._variable, - $.list_literal, - )), - '=', - '&', - field('right', $._expression), - )), - - conditional_expression: $ => prec.left(PREC.TERNARY, seq( // TODO: Ternay is non-assossiative after PHP 8 - field('condition', $._expression), - '?', - field('body', optional($._expression)), - ':', - field('alternative', $._expression), - )), - - augmented_assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( - field('left', $._variable), - field('operator', choice( - '**=', - '*=', - '/=', - '%=', - '+=', - '-=', - '.=', - '<<=', - '>>=', - '&=', - '^=', - '|=', - '??=', - )), - field('right', $._expression), - )), - - _variable: $ => choice( - alias($.cast_variable, $.cast_expression), - $._callable_variable, - $.scoped_property_access_expression, - $.member_access_expression, - $.nullsafe_member_access_expression, - ), - - member_access_expression: $ => prec(PREC.MEMBER, seq( - field('object', $._dereferencable_expression), - '->', - $._member_name, - )), - - nullsafe_member_access_expression: $ => prec(PREC.MEMBER, seq( - field('object', $._dereferencable_expression), - '?->', - $._member_name, - )), - - scoped_property_access_expression: $ => prec(PREC.MEMBER, seq( - field('scope', $._scope_resolution_qualifier), - '::', - field('name', $._variable_name), - )), - - list_literal: $ => choice($._list_destructing, $._array_destructing), - - _list_destructing: $ => seq( - keyword('list'), - '(', - commaSep1(optional(choice( - choice(alias($._list_destructing, $.list_literal), $._variable, $.by_ref), - seq($._expression, '=>', choice(alias($._list_destructing, $.list_literal), $._variable, $.by_ref)), - ))), - ')', - ), - - _array_destructing: $ => seq( - '[', - commaSep1(optional($._array_destructing_element)), - ']', - ), - - _array_destructing_element: $ => choice( - choice(alias($._array_destructing, $.list_literal), $._variable, $.by_ref), - seq($._expression, '=>', choice(alias($._array_destructing, $.list_literal), $._variable, $.by_ref)), - ), - - _callable_variable: $ => choice( - $._variable_name, - $.subscript_expression, - $.member_call_expression, - $.nullsafe_member_call_expression, - $.scoped_call_expression, - $.function_call_expression, - ), - - function_call_expression: $ => prec(PREC.CALL, seq( - field('function', choice($.name, alias($._reserved_identifier, $.name), $.qualified_name, $._callable_expression)), - field('arguments', $.arguments), - )), - - _callable_expression: $ => choice( - $._callable_variable, - $.parenthesized_expression, - $.array_creation_expression, - $._string, - ), - - scoped_call_expression: $ => prec(PREC.CALL, seq( - field('scope', $._scope_resolution_qualifier), - '::', - $._member_name, - field('arguments', $.arguments), - )), - - _scope_resolution_qualifier: $ => choice( - $.relative_scope, - $.name, - alias($._reserved_identifier, $.name), - $.qualified_name, - $._dereferencable_expression, - ), - - relative_scope: _ => prec(PREC.SCOPE, choice( - 'self', - 'parent', - keyword('static'), - )), - - variadic_placeholder: _ => '...', - - arguments: $ => seq( - '(', - choice( - seq( - commaSep($.argument), - optional(','), - ), - $.variadic_placeholder, - ), - ')', - ), - - argument: $ => seq( - optional(seq(field('name', $.name), ':')), - optional(field('reference_modifier', $.reference_modifier)), - choice(alias($._reserved_identifier, $.name), $.variadic_unpacking, $._expression), - ), - - member_call_expression: $ => prec(PREC.CALL, seq( - field('object', $._dereferencable_expression), - '->', - $._member_name, - field('arguments', $.arguments), - )), - - nullsafe_member_call_expression: $ => prec(PREC.CALL, seq( - field('object', $._dereferencable_expression), - '?->', - $._member_name, - field('arguments', $.arguments), - )), - - variadic_unpacking: $ => seq('...', $._expression), - - _member_name: $ => choice( - field('name', choice( - alias($._reserved_identifier, $.name), - $.name, - $._variable_name, - )), - seq( - '{', - field('name', $._expression), - '}', - ), - ), - - subscript_expression: $ => seq( - $._dereferencable_expression, - choice( - seq('[', optional($._expression), ']'), - seq('{', $._expression, '}'), - ), - ), - - _dereferencable_expression: $ => prec(PREC.DEREF, choice( - $._variable, - $.class_constant_access_expression, - $.parenthesized_expression, - $.array_creation_expression, - $.name, - alias($._reserved_identifier, $.name), - $.qualified_name, - $._string, - )), - - array_creation_expression: $ => choice( - seq(keyword('array'), '(', commaSep($.array_element_initializer), optional(','), ')'), - seq('[', commaSep($.array_element_initializer), optional(','), ']'), - ), - - attribute_group: $ => seq( - '#[', - commaSep1($.attribute), - optional(','), - ']', - ), - - attribute_list: $ => repeat1($.attribute_group), - - attribute: $ => seq( - choice($.name, alias($._reserved_identifier, $.name), $.qualified_name), - optional(field('parameters', $.arguments)), - ), - - _complex_string_part: $ => seq( - '{', - $._expression, - '}', - ), - - _simple_string_member_access_expression: $ => prec(PREC.MEMBER, seq( - field('object', $.variable_name), - '->', - field('name', $.name), - )), - - _simple_string_subscript_unary_expression: $ => prec.left(seq('-', $.integer)), - - _simple_string_array_access_argument: $ => choice( - $.integer, - alias($._simple_string_subscript_unary_expression, $.unary_op_expression), - $.name, - $.variable_name, - ), - - _simple_string_subscript_expression: $ => prec(PREC.DEREF, seq( - $.variable_name, - seq('[', $._simple_string_array_access_argument, ']'), - )), - - _simple_string_part: $ => choice( - alias($._simple_string_member_access_expression, $.member_access_expression), - $._variable_name, - alias($._simple_string_subscript_expression, $.subscript_expression), - ), - - // Note: remember to also update the is_escapable_sequence method in the - // external scanner whenever changing these rules - escape_sequence: _ => token.immediate(seq( - '\\', - choice( - 'n', - 'r', - 't', - 'v', - 'e', - 'f', - '\\', - /\$/, - '"', - '`', - /[0-7]{1,3}/, - /x[0-9A-Fa-f]{1,2}/, - /u{[0-9A-Fa-f]+}/, - ), - )), - - _interpolated_string_body: $ => repeat1( - choice( - $.escape_sequence, - seq($.variable_name, alias($.encapsed_string_chars_after_variable, $.string_value)), - alias($.encapsed_string_chars, $.string_value), - $._simple_string_part, - $._complex_string_part, - alias('\\u', $.string_value), - alias('\'', $.string_value), // Needed to avoid the edge case "$b'" from breaking parsing by trying to apply the $.string rule for some reason - ), - ), - - _interpolated_string_body_heredoc: $ => repeat1( - choice( - $.escape_sequence, - seq($.variable_name, alias($.encapsed_string_chars_after_variable_heredoc, $.string_value)), - alias($.encapsed_string_chars_heredoc, $.string_value), - $._simple_string_part, - $._complex_string_part, - alias('\\u', $.string_value), - alias('\'', $.string_value), // Needed to avoid the edge case "$b'" from breaking parsing by trying to apply the $.string rule for some reason - alias('')), $.string_value), - ), - ), - - encapsed_string: $ => prec.right(seq( - choice( - /[bB]"/, - '"', - ), - optional($._interpolated_string_body), - '"', - )), - - string: $ => seq( - choice( - /[bB]'/, - '\'', - ), - optional($.string_value), - '\'', - ), - - string_value: _ => token(prec(1, repeat1(/\\'|\\\\|\\?[^'\\]/))), // prec(1, ...) is needed to avoid conflict with $.comment - - heredoc_body: $ => seq($._new_line, - repeat1(prec.right( - seq(optional($._new_line), $._interpolated_string_body_heredoc), - )), - ), - - heredoc: $ => seq( - token('<<<'), - field('identifier', choice( - $.heredoc_start, - seq('"', $.heredoc_start, token.immediate('"')), - )), - choice( - seq( - field('value', $.heredoc_body), - $._new_line, - field('end_tag', $.heredoc_end), - ), - seq( - field('value', optional($.heredoc_body)), - field('end_tag', $.heredoc_end), - ), - ), - ), - - // _new_line: _ => choice(token(/\r?\n/), token(/\r/)), - _new_line: _ => /\r?\n|\r/, - - nowdoc_body: $ => seq($._new_line, - choice( - repeat1( - $.nowdoc_string, - ), - alias('', $.nowdoc_string), - ), - ), - - nowdoc: $ => seq( - token('<<<'), - '\'', - field('identifier', $.heredoc_start), - token.immediate('\''), - choice( - seq( - field('value', $.nowdoc_body), - $._new_line, - field('end_tag', $.heredoc_end), - ), - seq( - field('value', optional($.nowdoc_body)), - field('end_tag', $.heredoc_end), - ), - ), - ), - - _interpolated_execution_operator_body: $ => repeat1( - choice( - $.escape_sequence, - seq($.variable_name, alias($.execution_string_chars_after_variable, $.string_value)), - alias($.execution_string_chars, $.string_value), - $._simple_string_part, - $._complex_string_part, - alias('\\u', $.string_value), - ), - ), - - shell_command_expression: $ => seq( - '`', - optional($._interpolated_execution_operator_body), - '`', - ), - - boolean: _ => /true|false/i, - - null: _ => keyword('null', false), - - _string: $ => choice($.encapsed_string, $.string, $.heredoc, $.nowdoc), - - dynamic_variable_name: $ => choice( - seq('$', $._variable_name), - seq('$', '{', $._expression, '}'), - ), - - _variable_name: $ => choice($.dynamic_variable_name, $.variable_name), - - variable_name: $ => seq('$', $.name), - - variable_reference: $ => seq('&', $.variable_name), - by_ref: $ => seq( - '&', - choice( - $._callable_variable, - $.member_access_expression, - $.nullsafe_member_access_expression, - ), - ), - - yield_expression: $ => prec.right(seq( - keyword('yield'), - optional(choice( - $.array_element_initializer, - seq(keyword('from'), $._expression), - )), - )), - - array_element_initializer: $ => prec.right(choice( - choice($.by_ref, $._expression), - seq($._expression, '=>', choice($.by_ref, $._expression)), - $.variadic_unpacking, - )), - - binary_expression: $ => choice( - prec(PREC.INSTANCEOF, seq( - field('left', $._unary_expression), - field('operator', keyword('instanceof')), - field('right', $._class_type_designator), - )), - prec.right(PREC.NULL_COALESCE, seq( - field('left', $._expression), - field('operator', '??'), - field('right', $._expression), - )), - ...[ - [keyword('and'), PREC.LOGICAL_AND_2], - [keyword('or'), PREC.LOGICAL_OR_2], - [keyword('xor'), PREC.LOGICAL_XOR], - ['||', PREC.LOGICAL_OR_1], - ['&&', PREC.LOGICAL_AND_1], - ['|', PREC.BITWISE_OR], - ['^', PREC.BITWISE_XOR], - ['&', PREC.BITWISE_AND], - ['==', PREC.EQUALITY], - ['!=', PREC.EQUALITY], - ['<>', PREC.EQUALITY], - ['===', PREC.EQUALITY], - ['!==', PREC.EQUALITY], - ['<', PREC.INEQUALITY], - ['>', PREC.INEQUALITY], - ['<=', PREC.INEQUALITY], - ['>=', PREC.INEQUALITY], - ['<=>', PREC.EQUALITY], - ['<<', PREC.SHIFT], - ['>>', PREC.SHIFT], - ['+', PREC.PLUS], - ['-', PREC.PLUS], - ['.', PREC.CONCAT], - ['*', PREC.TIMES], - ['/', PREC.TIMES], - ['%', PREC.TIMES], - // @ts-ignore - ].map(([op, p]) => prec.left(p, seq( - field('left', $._expression), - // @ts-ignore - field('operator', op), - field('right', $._expression), - ))), - ), - - include_expression: $ => seq( - keyword('include'), - $._expression, - ), - - include_once_expression: $ => seq( - keyword('include_once'), - $._expression, - ), - - require_expression: $ => seq( - keyword('require'), - $._expression, - ), - - require_once_expression: $ => seq( - keyword('require_once'), - $._expression, - ), - - name: _ => /[_a-zA-Z\u00A1-\u00ff][_a-zA-Z\u00A1-\u00ff\d]*/, - - _reserved_identifier: _ => choice( - 'self', - 'parent', - keyword('static'), - ), - - comment: _ => token(choice( - seq( - choice('//', /#[^?\[?\r?\n]/), - repeat(/[^?\r?\n]|\?[^>\r\n]/), - optional(/\?\r?\n/), - ), - '#', - seq( - '/*', - /[^*]*\*+([^/*][^*]*\*+)*/, - '/', - ), - )), - - _semicolon: $ => choice($._automatic_semicolon, ';'), - }, -}); - -/** - * Creates a regex that matches the given word case-insensitively, - * and will alias the regex to the word if aliasAsWord is true - * - * @param {string} word - * @param {boolean} aliasAsWord? - * - * @return {RegExp|AliasRule} - */ -function keyword(word, aliasAsWord = true) { - /** @type {RegExp|AliasRule} */ - let result = new RegExp(word, 'i'); - if (aliasAsWord) result = alias(result, word); - return result; -} - -/** - * Creates a rule to match one or more of the rules separated by a comma - * - * @param {Rule} rule - * - * @return {SeqRule} - * - */ -function commaSep1(rule) { - return seq(rule, repeat(seq(',', rule))); -} - -/** - * Creates a rule to optionally match one or more of the rules separated by a comma - * - * @param {Rule} rule - * - * @return {ChoiceRule} - * - */ -function commaSep(rule) { - return optional(commaSep1(rule)); -} - -/** - * Creates a rule to match one or more of the rules separated by a pipe - * - * @param {Rule} rule - * - * @return {SeqRule} - */ -function pipeSep1(rule) { - return seq(rule, repeat(seq('|', rule))); -} - -/** - * Creates a rule to match one or more of the rules separated by an ampersand - * - * @param {Rule} rule - * - * @return {SeqRule} - */ -function ampSep1(rule) { - return seq(rule, repeat(seq(token('&'), rule))); -} diff --git a/package.json b/package.json index 5a19b879..b2bbd200 100644 --- a/package.json +++ b/package.json @@ -25,9 +25,14 @@ "tree-sitter-cli": "^0.20.8" }, "scripts": { - "build": "tree-sitter generate && node-gyp build", - "lint": "eslint grammar.js", - "test": "tree-sitter test && node script/parse-examples.js" + "build": "npm run build-php && npm run build-php_only", + "build-php": "cd php && tree-sitter generate --no-bindings", + "build-php_only": "cd php_only && tree-sitter generate --no-bindings", + "lint": "eslint common/define-grammar.js", + "test-load": "node -e \"console.log(require('./php').name, require('./php_only').name)\"", + "test": "npm run test-php && npm run test-php_only && npm run test-load && node script/parse-examples.js", + "test-php": "cd php && tree-sitter test", + "test-php_only": "cd php_only && tree-sitter test" }, "repository": { "type": "git", @@ -36,10 +41,11 @@ "tree-sitter": [ { "scope": "source.php", - "file-types": [ - "php" - ], - "highlights": "queries/highlights.scm" + "file-types": ["php"], + "path": "php", + "highlights": "queries/highlights.scm", + "tags": "queries/tags.scm", + "injections": "queries/injections.scm" } ] } diff --git a/php/grammar.js b/php/grammar.js new file mode 100644 index 00000000..2bb36660 --- /dev/null +++ b/php/grammar.js @@ -0,0 +1,3 @@ +const defineGrammar = require('../common/define-grammar.js'); + +module.exports = defineGrammar('php'); diff --git a/php/package.json b/php/package.json new file mode 100644 index 00000000..b55a4a18 --- /dev/null +++ b/php/package.json @@ -0,0 +1,3 @@ +{ + "main": "../bindings/node/php" +} diff --git a/src/grammar.json b/php/src/grammar.json similarity index 100% rename from src/grammar.json rename to php/src/grammar.json diff --git a/src/node-types.json b/php/src/node-types.json similarity index 100% rename from src/node-types.json rename to php/src/node-types.json diff --git a/src/parser.c b/php/src/parser.c similarity index 99% rename from src/parser.c rename to php/src/parser.c index 4bd6ca9e..1394fdbe 100644 --- a/src/parser.c +++ b/php/src/parser.c @@ -6550,7 +6550,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(69); + lookahead == 65279) SKIP(69) if (('C' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); END_STATE(); @@ -6581,7 +6581,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(4); + lookahead == 65279) SKIP(4) END_STATE(); case 4: if (lookahead == '\n') ADVANCE(191); @@ -6601,7 +6601,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(4); + lookahead == 65279) SKIP(4) END_STATE(); case 5: if (lookahead == '\n') ADVANCE(192); @@ -6614,7 +6614,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(5); + lookahead == 65279) SKIP(5) END_STATE(); case 6: if (lookahead == '!') ADVANCE(143); @@ -6669,7 +6669,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(6); + lookahead == 65279) SKIP(6) if (('C' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); END_STATE(); @@ -6717,7 +6717,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(7); + lookahead == 65279) SKIP(7) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); @@ -6766,7 +6766,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(8); + lookahead == 65279) SKIP(8) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); @@ -6807,7 +6807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(12); + lookahead == 65279) SKIP(12) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); @@ -6847,7 +6847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(11); + lookahead == 65279) SKIP(11) if (('A' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); END_STATE(); @@ -6886,7 +6886,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(11); + lookahead == 65279) SKIP(11) if (('A' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); END_STATE(); @@ -6924,7 +6924,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(12); + lookahead == 65279) SKIP(12) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); @@ -6958,7 +6958,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(13); + lookahead == 65279) SKIP(13) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || @@ -6990,7 +6990,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(15); + lookahead == 65279) SKIP(15) if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || @@ -7022,7 +7022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(16); + lookahead == 65279) SKIP(16) if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || @@ -7054,7 +7054,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(17); + lookahead == 65279) SKIP(17) END_STATE(); case 18: if (lookahead == '#') ADVANCE(279); @@ -7071,7 +7071,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(18); + lookahead == 65279) SKIP(18) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || @@ -7089,7 +7089,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(19); + lookahead == 65279) SKIP(19) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || @@ -7108,7 +7108,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(20); + lookahead == 65279) SKIP(20) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || @@ -7128,7 +7128,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(22); + lookahead == 65279) SKIP(22) END_STATE(); case 22: if (lookahead == '#') ADVANCE(280); @@ -7144,7 +7144,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(22); + lookahead == 65279) SKIP(22) END_STATE(); case 23: if (lookahead == '#') ADVANCE(188); @@ -7393,7 +7393,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(69); + lookahead == 65279) SKIP(69) if (('C' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); END_STATE(); @@ -7446,7 +7446,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(70); + lookahead == 65279) SKIP(70) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); @@ -7488,7 +7488,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(71); + lookahead == 65279) SKIP(71) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || (161 <= lookahead && lookahead <= 255)) ADVANCE(276); @@ -7504,7 +7504,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) ADVANCE(82); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72); + lookahead == ' ') SKIP(72) if (lookahead != 0) ADVANCE(89); END_STATE(); case 73: @@ -7530,7 +7530,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(73); + lookahead == 65279) SKIP(73) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || @@ -8826,7 +8826,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(0); + lookahead == 65279) SKIP(0) END_STATE(); case 1: if (lookahead == 'B' || diff --git a/php/src/scanner.c b/php/src/scanner.c new file mode 100644 index 00000000..1d9b7fb6 --- /dev/null +++ b/php/src/scanner.c @@ -0,0 +1,17 @@ +#include "../../common/scanner.h" + +void *tree_sitter_php_external_scanner_create() { + return external_scanner_create(); +} +unsigned tree_sitter_php_external_scanner_serialize(void *p, char *b) { + return external_scanner_serialize(p, b); +} +void tree_sitter_php_external_scanner_deserialize(void *p, const char *b, unsigned n) { + external_scanner_deserialize(p, b, n); +} +bool tree_sitter_php_external_scanner_scan(void *p, TSLexer *l, const bool *s) { + return external_scanner_scan(p, l, s); +} +void tree_sitter_php_external_scanner_destroy(void *p) { + external_scanner_destroy(p); +} diff --git a/src/tree_sitter/parser.h b/php/src/tree_sitter/parser.h similarity index 100% rename from src/tree_sitter/parser.h rename to php/src/tree_sitter/parser.h diff --git a/php/test/corpus/common b/php/test/corpus/common new file mode 120000 index 00000000..d3a2b72c --- /dev/null +++ b/php/test/corpus/common @@ -0,0 +1 @@ +../../../common/test/corpus \ No newline at end of file diff --git a/test/corpus/interpolation.txt b/php/test/corpus/interpolation.txt similarity index 78% rename from test/corpus/interpolation.txt rename to php/test/corpus/interpolation.txt index fa4e6dbe..0482c975 100644 --- a/test/corpus/interpolation.txt +++ b/php/test/corpus/interpolation.txt @@ -144,7 +144,7 @@ echo "hi"; ======================================= -Singel line comment without any content +Single line comment without any content ======================================= b + + + +--- + +(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) +) + diff --git a/php_only/grammar.js b/php_only/grammar.js new file mode 100644 index 00000000..ba5a6075 --- /dev/null +++ b/php_only/grammar.js @@ -0,0 +1,3 @@ +const defineGrammar = require('../common/define-grammar.js'); + +module.exports = defineGrammar('php_only'); diff --git a/php_only/package.json b/php_only/package.json new file mode 100644 index 00000000..9eb9c27f --- /dev/null +++ b/php_only/package.json @@ -0,0 +1,11 @@ +{ + "main": "../bindings/node/php_only", + "tree-sitter": [ + { + "scope": "source.php", + "file-types": ["php"], + "highlights": "../queries/highlights.scm", + "tags": "../queries/tags.scm" + } + ] +} diff --git a/php_only/src/grammar.json b/php_only/src/grammar.json new file mode 100644 index 00000000..5e4def1a --- /dev/null +++ b/php_only/src/grammar.json @@ -0,0 +1,9032 @@ +{ + "name": "php_only", + "word": "name", + "rules": { + "program": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "php_tag" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?>" + }, + { + "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": "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<][^<]*" + } + ] + } + }, + "_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "empty_statement" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "named_label_statement" + }, + { + "type": "SYMBOL", + "name": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "switch_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "do_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "foreach_statement" + }, + { + "type": "SYMBOL", + "name": "goto_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "declare_statement" + }, + { + "type": "SYMBOL", + "name": "echo_statement" + }, + { + "type": "SYMBOL", + "name": "unset_statement" + }, + { + "type": "SYMBOL", + "name": "const_declaration" + }, + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "class_declaration" + }, + { + "type": "SYMBOL", + "name": "interface_declaration" + }, + { + "type": "SYMBOL", + "name": "trait_declaration" + }, + { + "type": "SYMBOL", + "name": "enum_declaration" + }, + { + "type": "SYMBOL", + "name": "namespace_definition" + }, + { + "type": "SYMBOL", + "name": "namespace_use_declaration" + }, + { + "type": "SYMBOL", + "name": "global_declaration" + }, + { + "type": "SYMBOL", + "name": "function_static_declaration" + } + ] + }, + "empty_statement": { + "type": "PREC", + "value": -1, + "content": { + "type": "STRING", + "value": ";" + } + }, + "reference_modifier": { + "type": "STRING", + "value": "&" + }, + "function_static_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "static", + "flags": "i" + }, + "named": false, + "value": "static" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "static_variable_declaration" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "static_variable_declaration" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "static_variable_declaration": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "variable_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "global_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "global", + "flags": "i" + }, + "named": false, + "value": "global" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_variable_name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_variable_name" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "namespace_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "namespace", + "flags": "i" + }, + "named": false, + "value": "namespace" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "namespace_name" + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_name" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + } + ] + } + ] + }, + "namespace_use_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "use", + "flags": "i" + }, + "named": false, + "value": "use" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "function", + "flags": "i" + }, + "named": false, + "value": "function" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "const", + "flags": "i" + }, + "named": false, + "value": "const" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_use_clause" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "namespace_use_clause" + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "namespace_name" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "SYMBOL", + "name": "namespace_use_group" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "namespace_use_clause": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_aliasing_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "qualified_name": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_name_as_prefix" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + "namespace_name_as_prefix": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "namespace_name" + }, + { + "type": "STRING", + "value": "\\" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "namespace", + "flags": "i" + }, + "named": false, + "value": "namespace" + }, + { + "type": "STRING", + "value": "\\" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "namespace", + "flags": "i" + }, + "named": false, + "value": "namespace" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "namespace_name" + }, + { + "type": "STRING", + "value": "\\" + } + ] + } + ] + }, + "namespace_name": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + } + ] + }, + "namespace_aliasing_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "as", + "flags": "i" + }, + "named": false, + "value": "as" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + "namespace_use_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_use_group_clause" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "namespace_use_group_clause" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "namespace_use_group_clause": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "function", + "flags": "i" + }, + "named": false, + "value": "function" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "const", + "flags": "i" + }, + "named": false, + "value": "const" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "namespace_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_aliasing_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "trait_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "trait", + "flags": "i" + }, + "named": false, + "value": "trait" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + } + ] + }, + "interface_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "interface", + "flags": "i" + }, + "named": false, + "value": "interface" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + } + ] + }, + "base_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "extends", + "flags": "i" + }, + "named": false, + "value": "extends" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + } + ] + } + } + ] + } + ] + }, + "enum_declaration": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "enum", + "flags": "i" + }, + "named": false, + "value": "enum" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "string" + }, + { + "type": "STRING", + "value": "int" + } + ] + }, + "named": true, + "value": "primitive_type" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_interface_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enum_declaration_list" + } + } + ] + } + }, + "enum_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_enum_member_declaration" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_enum_member_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "enum_case" + }, + { + "type": "SYMBOL", + "name": "method_declaration" + }, + { + "type": "SYMBOL", + "name": "use_declaration" + } + ] + }, + "enum_case": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "case", + "flags": "i" + }, + "named": false, + "value": "case" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "integer" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "class_declaration": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "modifier", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "final_modifier" + }, + { + "type": "SYMBOL", + "name": "abstract_modifier" + } + ] + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "modifier", + "content": { + "type": "SYMBOL", + "name": "readonly_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "class", + "flags": "i" + }, + "named": false, + "value": "class" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_interface_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_member_declaration" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "final_modifier": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "final", + "flags": "i" + }, + "named": false, + "value": "final" + }, + "abstract_modifier": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "abstract", + "flags": "i" + }, + "named": false, + "value": "abstract" + }, + "readonly_modifier": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "readonly", + "flags": "i" + }, + "named": false, + "value": "readonly" + }, + "class_interface_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "implements", + "flags": "i" + }, + "named": false, + "value": "implements" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + } + ] + } + } + ] + } + ] + }, + "_member_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_class_const_declaration" + }, + "named": true, + "value": "const_declaration" + }, + { + "type": "SYMBOL", + "name": "property_declaration" + }, + { + "type": "SYMBOL", + "name": "method_declaration" + }, + { + "type": "SYMBOL", + "name": "use_declaration" + } + ] + }, + "const_declaration": { + "type": "SYMBOL", + "name": "_const_declaration" + }, + "_class_const_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "modifier", + "content": { + "type": "SYMBOL", + "name": "final_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_const_declaration" + } + ] + }, + "_const_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "const", + "flags": "i" + }, + "named": false, + "value": "const" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "const_element" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "const_element" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "property_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "property_element" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "property_element" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "_modifier": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "var_modifier" + }, + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "SYMBOL", + "name": "static_modifier" + }, + { + "type": "SYMBOL", + "name": "final_modifier" + }, + { + "type": "SYMBOL", + "name": "abstract_modifier" + }, + { + "type": "SYMBOL", + "name": "readonly_modifier" + } + ] + } + }, + "property_element": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "property_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "property_initializer": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "method_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } + }, + { + "type": "SYMBOL", + "name": "_function_definition_header" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + }, + "var_modifier": { + "type": "PATTERN", + "value": "var", + "flags": "i" + }, + "static_modifier": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "static", + "flags": "i" + }, + "named": false, + "value": "static" + }, + "use_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "use", + "flags": "i" + }, + "named": false, + "value": "use" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "use_list" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + }, + "use_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "use_instead_of_clause" + }, + { + "type": "SYMBOL", + "name": "use_as_clause" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "use_instead_of_clause": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_constant_access_expression" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "insteadof", + "flags": "i" + }, + "named": false, + "value": "insteadof" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + }, + "use_as_clause": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_constant_access_expression" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "as", + "flags": "i" + }, + "named": false, + "value": "as" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + "visibility_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "public", + "flags": "i" + }, + "named": false, + "value": "public" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "protected", + "flags": "i" + }, + "named": false, + "value": "protected" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "private", + "flags": "i" + }, + "named": false, + "value": "private" + } + ] + }, + "function_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_function_definition_header" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "_function_definition_header": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "function", + "flags": "i" + }, + "named": false, + "value": "function" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "reference_modifier", + "content": { + "type": "SYMBOL", + "name": "reference_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + } + ] + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_return_type" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_arrow_function_header": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "static_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "fn", + "flags": "i" + }, + "named": false, + "value": "fn" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "reference_modifier", + "content": { + "type": "SYMBOL", + "name": "reference_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_return_type" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "arrow_function": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_arrow_function_header" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + "formal_parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_parameter" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + }, + { + "type": "SYMBOL", + "name": "property_promotion_parameter" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_parameter" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + }, + { + "type": "SYMBOL", + "name": "property_promotion_parameter" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "property_promotion_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "visibility", + "content": { + "type": "SYMBOL", + "name": "visibility_modifier" + } + }, + { + "type": "FIELD", + "name": "readonly", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "readonly_modifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "variable_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "simple_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "reference_modifier", + "content": { + "type": "SYMBOL", + "name": "reference_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "variable_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "variadic_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "reference_modifier", + "content": { + "type": "SYMBOL", + "name": "reference_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "variable_name" + } + } + ] + }, + "_type": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "union_type" + }, + { + "type": "SYMBOL", + "name": "intersection_type" + } + ] + }, + "_types": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "optional_type" + }, + { + "type": "SYMBOL", + "name": "named_type" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + }, + "named_type": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + }, + "optional_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "?" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "named_type" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + } + ] + }, + "bottom_type": { + "type": "STRING", + "value": "never" + }, + "union_type": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_types" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_types" + } + ] + } + } + ] + } + }, + "intersection_type": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_types" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "SYMBOL", + "name": "_types" + } + ] + } + } + ] + }, + "primitive_type": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "array" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "callable", + "flags": "i" + }, + "named": false, + "value": "callable" + }, + { + "type": "STRING", + "value": "iterable" + }, + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "float" + }, + { + "type": "STRING", + "value": "int" + }, + { + "type": "STRING", + "value": "string" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "mixed" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "false" + }, + { + "type": "STRING", + "value": "null" + }, + { + "type": "STRING", + "value": "true" + } + ] + }, + "cast_type": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "array", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "binary", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "bool", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "boolean", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "double", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "int", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "integer", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "float", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "object", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "real", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "string", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "unset", + "flags": "i" + } + ] + }, + "_return_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "return_type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "SYMBOL", + "name": "bottom_type" + } + ] + } + } + ] + }, + "const_element": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "echo_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "echo", + "flags": "i" + }, + "named": false, + "value": "echo" + }, + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "unset_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "unset" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_variable" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "declare_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "declare", + "flags": "i" + }, + "named": false, + "value": "declare" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "declare_directive" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "enddeclare", + "flags": "i" + }, + "named": false, + "value": "enddeclare" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + }, + "declare_directive": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ticks" + }, + { + "type": "STRING", + "value": "encoding" + }, + { + "type": "STRING", + "value": "strict_types" + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_literal" + } + ] + }, + "_literal": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "SYMBOL", + "name": "float" + }, + { + "type": "SYMBOL", + "name": "_string" + }, + { + "type": "SYMBOL", + "name": "boolean" + }, + { + "type": "SYMBOL", + "name": "null" + } + ] + }, + "float": { + "type": "PATTERN", + "value": "\\d*(_\\d+)*((\\.\\d*(_\\d+)*)?([eE][\\+-]?\\d+(_\\d+)*)|(\\.\\d*(_\\d+)*)([eE][\\+-]?\\d+(_\\d+)*)?)" + }, + "try_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "try", + "flags": "i" + }, + "named": false, + "value": "try" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "catch_clause" + }, + { + "type": "SYMBOL", + "name": "finally_clause" + } + ] + } + } + ] + }, + "catch_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "catch", + "flags": "i" + }, + "named": false, + "value": "catch" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "variable_name" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "type_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "named_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "named_type" + } + ] + } + } + ] + }, + "finally_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "finally", + "flags": "i" + }, + "named": false, + "value": "finally" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "goto_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "goto", + "flags": "i" + }, + "named": false, + "value": "goto" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "continue_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "continue", + "flags": "i" + }, + "named": false, + "value": "continue" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "break_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "break", + "flags": "i" + }, + "named": false, + "value": "break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "integer": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[1-9]\\d*(_\\d+)*" + }, + { + "type": "PATTERN", + "value": "0[oO]?[0-7]*(_[0-7]+)*" + }, + { + "type": "PATTERN", + "value": "0[xX][0-9a-fA-F]+(_[0-9a-fA-F]+)*" + }, + { + "type": "PATTERN", + "value": "0[bB][01]+(_[01]+)*" + } + ] + } + }, + "return_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "return", + "flags": "i" + }, + "named": false, + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "throw_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "throw", + "flags": "i" + }, + "named": false, + "value": "throw" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "while", + "flags": "i" + }, + "named": false, + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "colon_block" + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "endwhile", + "flags": "i" + }, + "named": false, + "value": "endwhile" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + } + ] + }, + "do_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "do", + "flags": "i" + }, + "named": false, + "value": "do" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "while", + "flags": "i" + }, + "named": false, + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "for", + "flags": "i" + }, + "named": false, + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "endfor", + "flags": "i" + }, + "named": false, + "value": "endfor" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + } + ] + }, + "_expressions": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "sequence_expression" + } + ] + }, + "sequence_expression": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sequence_expression" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + }, + "foreach_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "foreach", + "flags": "i" + }, + "named": false, + "value": "foreach" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "as", + "flags": "i" + }, + "named": false, + "value": "as" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "foreach_pair" + }, + "named": true, + "value": "pair" + }, + { + "type": "SYMBOL", + "name": "_foreach_value" + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "colon_block" + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "endforeach", + "flags": "i" + }, + "named": false, + "value": "endforeach" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + } + ] + }, + "foreach_pair": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "_foreach_value" + } + ] + }, + "_foreach_value": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "by_ref" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "list_literal" + } + ] + }, + "if_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "if", + "flags": "i" + }, + "named": false, + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_if_clause" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "colon_block" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "else_if_clause_2" + }, + "named": true, + "value": "else_if_clause" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "else_clause_2" + }, + "named": true, + "value": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "endif", + "flags": "i" + }, + "named": false, + "value": "endif" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + } + ] + }, + "colon_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "else_if_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "elseif", + "flags": "i" + }, + "named": false, + "value": "elseif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "else", + "flags": "i" + }, + "named": false, + "value": "else" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "else_if_clause_2": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "elseif", + "flags": "i" + }, + "named": false, + "value": "elseif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "colon_block" + } + } + ] + }, + "else_clause_2": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "else", + "flags": "i" + }, + "named": false, + "value": "else" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "colon_block" + } + } + ] + }, + "match_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "match", + "flags": "i" + }, + "named": false, + "value": "match" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "match_block" + } + } + ] + }, + "match_block": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "match_conditional_expression" + }, + { + "type": "SYMBOL", + "name": "match_default_expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "match_conditional_expression" + }, + { + "type": "SYMBOL", + "name": "match_default_expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "match_condition_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + "match_conditional_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "conditional_expressions", + "content": { + "type": "SYMBOL", + "name": "match_condition_list" + } + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "return_expression", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + "match_default_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "default", + "flags": "i" + }, + "named": false, + "value": "default" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "return_expression", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + "switch_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "switch", + "flags": "i" + }, + "named": false, + "value": "switch" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "switch_block" + } + } + ] + }, + "switch_block": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "default_statement" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "default_statement" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "endswitch", + "flags": "i" + }, + "named": false, + "value": "endswitch" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + }, + "case_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "case", + "flags": "i" + }, + "named": false, + "value": "case" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "default_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "default", + "flags": "i" + }, + "named": false, + "value": "default" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "compound_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "named_label_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + "expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "conditional_expression" + }, + { + "type": "SYMBOL", + "name": "match_expression" + }, + { + "type": "SYMBOL", + "name": "augmented_assignment_expression" + }, + { + "type": "SYMBOL", + "name": "assignment_expression" + }, + { + "type": "SYMBOL", + "name": "reference_assignment_expression" + }, + { + "type": "SYMBOL", + "name": "yield_expression" + }, + { + "type": "SYMBOL", + "name": "_unary_expression" + }, + { + "type": "SYMBOL", + "name": "binary_expression" + }, + { + "type": "SYMBOL", + "name": "include_expression" + }, + { + "type": "SYMBOL", + "name": "include_once_expression" + }, + { + "type": "SYMBOL", + "name": "require_expression" + }, + { + "type": "SYMBOL", + "name": "require_once_expression" + } + ] + }, + "_unary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "clone_expression" + }, + { + "type": "SYMBOL", + "name": "_primary_expression" + }, + { + "type": "SYMBOL", + "name": "exponentiation_expression" + }, + { + "type": "SYMBOL", + "name": "unary_op_expression" + }, + { + "type": "SYMBOL", + "name": "cast_expression" + } + ] + }, + "unary_op_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 21, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "!" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + "exponentiation_expression": { + "type": "PREC_RIGHT", + "value": 18, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "clone_expression" + }, + { + "type": "SYMBOL", + "name": "_primary_expression" + }, + { + "type": "SYMBOL", + "name": "unary_op_expression" + }, + { + "type": "SYMBOL", + "name": "match_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "**" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "exponentiation_expression" + }, + { + "type": "SYMBOL", + "name": "clone_expression" + }, + { + "type": "SYMBOL", + "name": "unary_op_expression" + }, + { + "type": "SYMBOL", + "name": "_primary_expression" + }, + { + "type": "SYMBOL", + "name": "augmented_assignment_expression" + }, + { + "type": "SYMBOL", + "name": "assignment_expression" + }, + { + "type": "SYMBOL", + "name": "match_expression" + }, + { + "type": "SYMBOL", + "name": "cast_expression" + } + ] + } + } + ] + } + }, + "clone_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "clone", + "flags": "i" + }, + "named": false, + "value": "clone" + }, + { + "type": "SYMBOL", + "name": "_primary_expression" + } + ] + }, + "_primary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "class_constant_access_expression" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "array_creation_expression" + }, + { + "type": "SYMBOL", + "name": "print_intrinsic" + }, + { + "type": "SYMBOL", + "name": "anonymous_function_creation_expression" + }, + { + "type": "SYMBOL", + "name": "arrow_function" + }, + { + "type": "SYMBOL", + "name": "object_creation_expression" + }, + { + "type": "SYMBOL", + "name": "update_expression" + }, + { + "type": "SYMBOL", + "name": "shell_command_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "throw_expression" + }, + { + "type": "SYMBOL", + "name": "arrow_function" + } + ] + }, + "parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "class_constant_access_expression": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_scope_resolution_qualifier" + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + } + ] + } + ] + }, + "print_intrinsic": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "print", + "flags": "i" + }, + "named": false, + "value": "print" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "anonymous_function_creation_expression": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "static", + "flags": "i" + }, + "named": false, + "value": "static" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "function", + "flags": "i" + }, + "named": false, + "value": "function" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "reference_modifier", + "content": { + "type": "SYMBOL", + "name": "reference_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "anonymous_function_use_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_return_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "anonymous_function_use_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "use", + "flags": "i" + }, + "named": false, + "value": "use" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "variable_reference" + }, + "named": true, + "value": "by_ref" + }, + { + "type": "SYMBOL", + "name": "variable_name" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "variable_reference" + }, + "named": true, + "value": "by_ref" + }, + { + "type": "SYMBOL", + "name": "variable_name" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "object_creation_expression": { + "type": "PREC_RIGHT", + "value": 23, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "new", + "flags": "i" + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "_class_type_designator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "new", + "flags": "i" + }, + "named": false, + "value": "new" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "class", + "flags": "i" + }, + "named": false, + "value": "class" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_interface_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "declaration_list" + } + ] + } + ] + } + }, + "_class_type_designator": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "member_access_expression" + }, + { + "type": "SYMBOL", + "name": "nullsafe_member_access_expression" + }, + { + "type": "SYMBOL", + "name": "scoped_property_access_expression" + }, + { + "type": "SYMBOL", + "name": "_variable_name" + } + ] + }, + "update_expression": { + "type": "PREC_LEFT", + "value": 21, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "STRING", + "value": "++" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "STRING", + "value": "--" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "SYMBOL", + "name": "_variable" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "SYMBOL", + "name": "_variable" + } + ] + } + ] + } + }, + "cast_expression": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "cast_type" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_unary_expression" + }, + { + "type": "SYMBOL", + "name": "include_expression" + }, + { + "type": "SYMBOL", + "name": "include_once_expression" + } + ] + } + } + ] + } + }, + "cast_variable": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "cast_type" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_variable" + } + } + ] + } + }, + "assignment_expression": { + "type": "PREC_RIGHT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "list_literal" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + "reference_assignment_expression": { + "type": "PREC_RIGHT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "list_literal" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + "conditional_expression": { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + "augmented_assignment_expression": { + "type": "PREC_RIGHT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_variable" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "**=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": ".=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "??=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + "_variable": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "cast_variable" + }, + "named": true, + "value": "cast_expression" + }, + { + "type": "SYMBOL", + "name": "_callable_variable" + }, + { + "type": "SYMBOL", + "name": "scoped_property_access_expression" + }, + { + "type": "SYMBOL", + "name": "member_access_expression" + }, + { + "type": "SYMBOL", + "name": "nullsafe_member_access_expression" + } + ] + }, + "member_access_expression": { + "type": "PREC", + "value": 25, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "SYMBOL", + "name": "_dereferencable_expression" + } + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "_member_name" + } + ] + } + }, + "nullsafe_member_access_expression": { + "type": "PREC", + "value": 25, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "SYMBOL", + "name": "_dereferencable_expression" + } + }, + { + "type": "STRING", + "value": "?->" + }, + { + "type": "SYMBOL", + "name": "_member_name" + } + ] + } + }, + "scoped_property_access_expression": { + "type": "PREC", + "value": 25, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "scope", + "content": { + "type": "SYMBOL", + "name": "_scope_resolution_qualifier" + } + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_variable_name" + } + } + ] + } + }, + "list_literal": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_destructing" + }, + { + "type": "SYMBOL", + "name": "_array_destructing" + } + ] + }, + "_list_destructing": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "list", + "flags": "i" + }, + "named": false, + "value": "list" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_destructing" + }, + "named": true, + "value": "list_literal" + }, + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "by_ref" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_destructing" + }, + "named": true, + "value": "list_literal" + }, + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "by_ref" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_destructing" + }, + "named": true, + "value": "list_literal" + }, + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "by_ref" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_destructing" + }, + "named": true, + "value": "list_literal" + }, + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "by_ref" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_array_destructing": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_array_destructing_element" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_array_destructing_element" + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_array_destructing_element": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_array_destructing" + }, + "named": true, + "value": "list_literal" + }, + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "by_ref" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_array_destructing" + }, + "named": true, + "value": "list_literal" + }, + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "by_ref" + } + ] + } + ] + } + ] + }, + "_callable_variable": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_variable_name" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "member_call_expression" + }, + { + "type": "SYMBOL", + "name": "nullsafe_member_call_expression" + }, + { + "type": "SYMBOL", + "name": "scoped_call_expression" + }, + { + "type": "SYMBOL", + "name": "function_call_expression" + } + ] + }, + "function_call_expression": { + "type": "PREC", + "value": 24, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "_callable_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + "_callable_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_callable_variable" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "array_creation_expression" + }, + { + "type": "SYMBOL", + "name": "_string" + } + ] + }, + "scoped_call_expression": { + "type": "PREC", + "value": 24, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "scope", + "content": { + "type": "SYMBOL", + "name": "_scope_resolution_qualifier" + } + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "SYMBOL", + "name": "_member_name" + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + "_scope_resolution_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "relative_scope" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "_dereferencable_expression" + } + ] + }, + "relative_scope": { + "type": "PREC", + "value": 22, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "self" + }, + { + "type": "STRING", + "value": "parent" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "static", + "flags": "i" + }, + "named": false, + "value": "static" + } + ] + } + }, + "variadic_placeholder": { + "type": "STRING", + "value": "..." + }, + "arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "argument" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "argument" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "variadic_placeholder" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "argument": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "reference_modifier", + "content": { + "type": "SYMBOL", + "name": "reference_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "variadic_unpacking" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + }, + "member_call_expression": { + "type": "PREC", + "value": 24, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "SYMBOL", + "name": "_dereferencable_expression" + } + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "_member_name" + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + "nullsafe_member_call_expression": { + "type": "PREC", + "value": 24, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "SYMBOL", + "name": "_dereferencable_expression" + } + }, + { + "type": "STRING", + "value": "?->" + }, + { + "type": "SYMBOL", + "name": "_member_name" + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + "variadic_unpacking": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "_member_name": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "_variable_name" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + }, + "subscript_expression": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_dereferencable_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + } + ] + }, + "_dereferencable_expression": { + "type": "PREC", + "value": 26, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_variable" + }, + { + "type": "SYMBOL", + "name": "class_constant_access_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "array_creation_expression" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "_string" + } + ] + } + }, + "array_creation_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "array", + "flags": "i" + }, + "named": false, + "value": "array" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "array_element_initializer" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "array_element_initializer" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "array_element_initializer" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "array_element_initializer" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } + ] + }, + "attribute_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "attribute" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "attribute_list": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_group" + } + }, + "attribute": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "name" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_complex_string_part": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_simple_string_member_access_expression": { + "type": "PREC", + "value": 25, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "SYMBOL", + "name": "variable_name" + } + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + } + ] + } + }, + "_simple_string_subscript_unary_expression": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "SYMBOL", + "name": "integer" + } + ] + } + }, + "_simple_string_array_access_argument": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_simple_string_subscript_unary_expression" + }, + "named": true, + "value": "unary_op_expression" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "variable_name" + } + ] + }, + "_simple_string_subscript_expression": { + "type": "PREC", + "value": 26, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_name" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_simple_string_array_access_argument" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + ] + } + }, + "_simple_string_part": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_simple_string_member_access_expression" + }, + "named": true, + "value": "member_access_expression" + }, + { + "type": "SYMBOL", + "name": "_variable_name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_simple_string_subscript_expression" + }, + "named": true, + "value": "subscript_expression" + } + ] + }, + "escape_sequence": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "n" + }, + { + "type": "STRING", + "value": "r" + }, + { + "type": "STRING", + "value": "t" + }, + { + "type": "STRING", + "value": "v" + }, + { + "type": "STRING", + "value": "e" + }, + { + "type": "STRING", + "value": "f" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "\\$" + }, + { + "type": "STRING", + "value": "\"" + }, + { + "type": "STRING", + "value": "`" + }, + { + "type": "PATTERN", + "value": "[0-7]{1,3}" + }, + { + "type": "PATTERN", + "value": "x[0-9A-Fa-f]{1,2}" + }, + { + "type": "PATTERN", + "value": "u{[0-9A-Fa-f]+}" + } + ] + } + ] + } + }, + "_interpolated_string_body": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "encapsed_string_chars_after_variable" + }, + "named": true, + "value": "string_value" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "encapsed_string_chars" + }, + "named": true, + "value": "string_value" + }, + { + "type": "SYMBOL", + "name": "_simple_string_part" + }, + { + "type": "SYMBOL", + "name": "_complex_string_part" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "\\u" + }, + "named": true, + "value": "string_value" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "'" + }, + "named": true, + "value": "string_value" + } + ] + } + }, + "_interpolated_string_body_heredoc": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "encapsed_string_chars_after_variable_heredoc" + }, + "named": true, + "value": "string_value" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "encapsed_string_chars_heredoc" + }, + "named": true, + "value": "string_value" + }, + { + "type": "SYMBOL", + "name": "_simple_string_part" + }, + { + "type": "SYMBOL", + "name": "_complex_string_part" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "\\u" + }, + "named": true, + "value": "string_value" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "'" + }, + "named": true, + "value": "string_value" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "" + } + } + }, + "named": true, + "value": "string_value" + } + ] + } + }, + "encapsed_string": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[bB]\"" + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_interpolated_string_body" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "\"" + } + ] + } + }, + "string": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[bB]'" + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_value" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + "string_value": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "\\\\'|\\\\\\\\|\\\\?[^'\\\\]" + } + } + } + }, + "heredoc_body": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_new_line" + }, + { + "type": "REPEAT1", + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_new_line" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_interpolated_string_body_heredoc" + } + ] + } + } + } + ] + }, + "heredoc": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "<<<" + } + }, + { + "type": "FIELD", + "name": "identifier", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "heredoc_start" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "SYMBOL", + "name": "heredoc_start" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "\"" + } + } + ] + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "heredoc_body" + } + }, + { + "type": "SYMBOL", + "name": "_new_line" + }, + { + "type": "FIELD", + "name": "end_tag", + "content": { + "type": "SYMBOL", + "name": "heredoc_end" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "heredoc_body" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "end_tag", + "content": { + "type": "SYMBOL", + "name": "heredoc_end" + } + } + ] + } + ] + } + ] + }, + "_new_line": { + "type": "PATTERN", + "value": "\\r?\\n|\\r" + }, + "nowdoc_body": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_new_line" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "nowdoc_string" + } + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "" + }, + "named": true, + "value": "nowdoc_string" + } + ] + } + ] + }, + "nowdoc": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "<<<" + } + }, + { + "type": "STRING", + "value": "'" + }, + { + "type": "FIELD", + "name": "identifier", + "content": { + "type": "SYMBOL", + "name": "heredoc_start" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "'" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "nowdoc_body" + } + }, + { + "type": "SYMBOL", + "name": "_new_line" + }, + { + "type": "FIELD", + "name": "end_tag", + "content": { + "type": "SYMBOL", + "name": "heredoc_end" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "nowdoc_body" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "end_tag", + "content": { + "type": "SYMBOL", + "name": "heredoc_end" + } + } + ] + } + ] + } + ] + }, + "_interpolated_execution_operator_body": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "execution_string_chars_after_variable" + }, + "named": true, + "value": "string_value" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "execution_string_chars" + }, + "named": true, + "value": "string_value" + }, + { + "type": "SYMBOL", + "name": "_simple_string_part" + }, + { + "type": "SYMBOL", + "name": "_complex_string_part" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "\\u" + }, + "named": true, + "value": "string_value" + } + ] + } + }, + "shell_command_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "`" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_interpolated_execution_operator_body" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "`" + } + ] + }, + "boolean": { + "type": "PATTERN", + "value": "true|false", + "flags": "i" + }, + "null": { + "type": "PATTERN", + "value": "null", + "flags": "i" + }, + "_string": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "encapsed_string" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "heredoc" + }, + { + "type": "SYMBOL", + "name": "nowdoc" + } + ] + }, + "dynamic_variable_name": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "SYMBOL", + "name": "_variable_name" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + }, + "_variable_name": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "dynamic_variable_name" + }, + { + "type": "SYMBOL", + "name": "variable_name" + } + ] + }, + "variable_name": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + "variable_reference": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "SYMBOL", + "name": "variable_name" + } + ] + }, + "by_ref": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_callable_variable" + }, + { + "type": "SYMBOL", + "name": "member_access_expression" + }, + { + "type": "SYMBOL", + "name": "nullsafe_member_access_expression" + } + ] + } + ] + }, + "yield_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "yield", + "flags": "i" + }, + "named": false, + "value": "yield" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "array_element_initializer" + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "from", + "flags": "i" + }, + "named": false, + "value": "from" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "array_element_initializer": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "by_ref" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "by_ref" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "variadic_unpacking" + } + ] + } + }, + "binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_unary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "instanceof", + "flags": "i" + }, + "named": false, + "value": "instanceof" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_class_type_designator" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "??" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "and", + "flags": "i" + }, + "named": false, + "value": "and" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "or", + "flags": "i" + }, + "named": false, + "value": "or" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "xor", + "flags": "i" + }, + "named": false, + "value": "xor" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "===" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + } + ] + }, + "include_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "include", + "flags": "i" + }, + "named": false, + "value": "include" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "include_once_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "include_once", + "flags": "i" + }, + "named": false, + "value": "include_once" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "require_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "require", + "flags": "i" + }, + "named": false, + "value": "require" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "require_once_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "require_once", + "flags": "i" + }, + "named": false, + "value": "require_once" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "name": { + "type": "PATTERN", + "value": "[_a-zA-Z\\u00A1-\\u00ff][_a-zA-Z\\u00A1-\\u00ff\\d]*" + }, + "_reserved_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "self" + }, + { + "type": "STRING", + "value": "parent" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "static", + "flags": "i" + }, + "named": false, + "value": "static" + } + ] + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": "#[^?\\[?\\r?\\n]" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^?\\r?\\n]|\\?[^>\\r\\n]" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\?\\r?\\n" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + ] + } + }, + "_semicolon": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "STRING", + "value": ";" + } + ] + } + }, + "extras": [ + { + "type": "SYMBOL", + "name": "comment" + }, + { + "type": "PATTERN", + "value": "[\\s\\uFEFF\\u2060\\u200B\\u00A0]" + } + ], + "conflicts": [ + [ + "_array_destructing", + "array_creation_expression" + ], + [ + "_array_destructing_element", + "array_element_initializer" + ], + [ + "_primary_expression", + "_array_destructing_element" + ], + [ + "union_type", + "intersection_type" + ], + [ + "intersection_type" + ], + [ + "if_statement" + ], + [ + "namespace_name" + ], + [ + "heredoc_body" + ], + [ + "namespace_name_as_prefix" + ], + [ + "namespace_use_declaration", + "namespace_name_as_prefix" + ] + ], + "precedences": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "SYMBOL", + "name": "encapsed_string_chars" + }, + { + "type": "SYMBOL", + "name": "encapsed_string_chars_after_variable" + }, + { + "type": "SYMBOL", + "name": "execution_string_chars" + }, + { + "type": "SYMBOL", + "name": "execution_string_chars_after_variable" + }, + { + "type": "SYMBOL", + "name": "encapsed_string_chars_heredoc" + }, + { + "type": "SYMBOL", + "name": "encapsed_string_chars_after_variable_heredoc" + }, + { + "type": "SYMBOL", + "name": "_eof" + }, + { + "type": "SYMBOL", + "name": "heredoc_start" + }, + { + "type": "SYMBOL", + "name": "heredoc_end" + }, + { + "type": "SYMBOL", + "name": "nowdoc_string" + }, + { + "type": "SYMBOL", + "name": "sentinel_error" + } + ], + "inline": [ + "_statement", + "_semicolon", + "_member_name", + "_variable", + "_callable_variable", + "_callable_expression", + "_foreach_value", + "_literal", + "_class_type_designator", + "_variable_name" + ], + "supertypes": [ + "_statement", + "_expression", + "_primary_expression", + "_type", + "_literal" + ] +} + diff --git a/php_only/src/node-types.json b/php_only/src/node-types.json new file mode 100644 index 00000000..16bc156e --- /dev/null +++ b/php_only/src/node-types.json @@ -0,0 +1,5617 @@ +[ + { + "type": "_expression", + "named": true, + "subtypes": [ + { + "type": "_primary_expression", + "named": true + }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "augmented_assignment_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "clone_expression", + "named": true + }, + { + "type": "conditional_expression", + "named": true + }, + { + "type": "exponentiation_expression", + "named": true + }, + { + "type": "include_expression", + "named": true + }, + { + "type": "include_once_expression", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "reference_assignment_expression", + "named": true + }, + { + "type": "require_expression", + "named": true + }, + { + "type": "require_once_expression", + "named": true + }, + { + "type": "unary_op_expression", + "named": true + }, + { + "type": "yield_expression", + "named": true + } + ] + }, + { + "type": "_literal", + "named": true, + "subtypes": [ + { + "type": "boolean", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + { + "type": "_primary_expression", + "named": true, + "subtypes": [ + { + "type": "_literal", + "named": true + }, + { + "type": "anonymous_function_creation_expression", + "named": true + }, + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "arrow_function", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "object_creation_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "print_intrinsic", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "shell_command_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "throw_expression", + "named": true + }, + { + "type": "update_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + { + "type": "_statement", + "named": true, + "subtypes": [ + { + "type": "break_statement", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "const_declaration", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "declare_statement", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "echo_statement", + "named": true + }, + { + "type": "empty_statement", + "named": true + }, + { + "type": "enum_declaration", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "foreach_statement", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "function_static_declaration", + "named": true + }, + { + "type": "global_declaration", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "interface_declaration", + "named": true + }, + { + "type": "named_label_statement", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "namespace_use_declaration", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "trait_declaration", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "unset_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + }, + { + "type": "_type", + "named": true, + "subtypes": [ + { + "type": "intersection_type", + "named": true + }, + { + "type": "union_type", + "named": true + } + ] + }, + { + "type": "abstract_modifier", + "named": true, + "fields": {} + }, + { + "type": "anonymous_function_creation_expression", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "reference_modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + }, + { + "type": "bottom_type", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "anonymous_function_use_clause", + "named": true + } + ] + } + }, + { + "type": "anonymous_function_use_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "by_ref", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "argument", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "reference_modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "variadic_unpacking", + "named": true + } + ] + } + }, + { + "type": "arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "argument", + "named": true + }, + { + "type": "variadic_placeholder", + "named": true + } + ] + } + }, + { + "type": "array_creation_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "array_element_initializer", + "named": true + } + ] + } + }, + { + "type": "array_element_initializer", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "by_ref", + "named": true + }, + { + "type": "variadic_unpacking", + "named": true + } + ] + } + }, + { + "type": "arrow_function", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "reference_modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + }, + { + "type": "bottom_type", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "static_modifier", + "named": true + } + ] + } + }, + { + "type": "assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "cast_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "list_literal", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "attribute", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "arguments", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "qualified_name", + "named": true + } + ] + } + }, + { + "type": "attribute_group", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + } + ] + } + }, + { + "type": "attribute_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_group", + "named": true + } + ] + } + }, + { + "type": "augmented_assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "cast_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "%=", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "**=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": ".=", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "??=", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "|=", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "base_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "qualified_name", + "named": true + } + ] + } + }, + { + "type": "binary_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<=>", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "===", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "??", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "instanceof", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "xor", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + } + }, + { + "type": "break_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "by_ref", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "case_statement", + "named": true, + "fields": { + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, + { + "type": "cast_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "cast_type", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_primary_expression", + "named": true + }, + { + "type": "clone_expression", + "named": true + }, + { + "type": "exponentiation_expression", + "named": true + }, + { + "type": "include_expression", + "named": true + }, + { + "type": "include_once_expression", + "named": true + }, + { + "type": "unary_op_expression", + "named": true + } + ] + } + } + }, + { + "type": "cast_type", + "named": true, + "fields": {} + }, + { + "type": "catch_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "variable_name", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_list", + "named": true + } + ] + } + } + }, + { + "type": "class_constant_access_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "relative_scope", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "class_declaration", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration_list", + "named": true + } + ] + }, + "modifier": { + "multiple": true, + "required": false, + "types": [ + { + "type": "abstract_modifier", + "named": true + }, + { + "type": "final_modifier", + "named": true + }, + { + "type": "readonly_modifier", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "base_clause", + "named": true + }, + { + "type": "class_interface_clause", + "named": true + } + ] + } + }, + { + "type": "class_interface_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "qualified_name", + "named": true + } + ] + } + }, + { + "type": "clone_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_primary_expression", + "named": true + } + ] + } + }, + { + "type": "colon_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, + { + "type": "compound_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, + { + "type": "conditional_expression", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "const_declaration", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "final_modifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "const_element", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "const_element", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "continue_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "declaration_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "const_declaration", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "use_declaration", + "named": true + } + ] + } + }, + { + "type": "declare_directive", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_literal", + "named": true + } + ] + } + }, + { + "type": "declare_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "declare_directive", + "named": true + } + ] + } + }, + { + "type": "default_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, + { + "type": "do_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "dynamic_variable_name", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "echo_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "else_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "colon_block", + "named": true + } + ] + } + } + }, + { + "type": "else_if_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "colon_block", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "empty_statement", + "named": true, + "fields": {} + }, + { + "type": "encapsed_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "string_value", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "enum_case", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "integer", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + } + }, + { + "type": "enum_declaration", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "enum_declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "class_interface_clause", + "named": true + }, + { + "type": "primitive_type", + "named": true + } + ] + } + }, + { + "type": "enum_declaration_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "enum_case", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "use_declaration", + "named": true + } + ] + } + }, + { + "type": "exponentiation_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_primary_expression", + "named": true + }, + { + "type": "clone_expression", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "unary_op_expression", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_primary_expression", + "named": true + }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "augmented_assignment_expression", + "named": true + }, + { + "type": "clone_expression", + "named": true + }, + { + "type": "exponentiation_expression", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "unary_op_expression", + "named": true + } + ] + } + } + }, + { + "type": "expression_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "final_modifier", + "named": true, + "fields": {} + }, + { + "type": "finally_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + } + } + }, + { + "type": "for_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "_statement", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "foreach_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "colon_block", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "by_ref", + "named": true + }, + { + "type": "list_literal", + "named": true + }, + { + "type": "pair", + "named": true + } + ] + } + }, + { + "type": "formal_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "property_promotion_parameter", + "named": true + }, + { + "type": "simple_parameter", + "named": true + }, + { + "type": "variadic_parameter", + "named": true + } + ] + } + }, + { + "type": "function_call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + } + ] + }, + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + } + }, + { + "type": "function_definition", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "reference_modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + }, + { + "type": "bottom_type", + "named": true + } + ] + } + } + }, + { + "type": "function_static_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "static_variable_declaration", + "named": true + } + ] + } + }, + { + "type": "global_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "goto_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "heredoc", + "named": true, + "fields": { + "end_tag": { + "multiple": false, + "required": true, + "types": [ + { + "type": "heredoc_end", + "named": true + } + ] + }, + "identifier": { + "multiple": true, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "heredoc_start", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "heredoc_body", + "named": true + } + ] + } + } + }, + { + "type": "heredoc_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "string_value", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "if_statement", + "named": true, + "fields": { + "alternative": { + "multiple": true, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + }, + { + "type": "else_if_clause", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "colon_block", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "include_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "include_once_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "interface_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "base_clause", + "named": true + } + ] + } + }, + { + "type": "intersection_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "named_type", + "named": true + }, + { + "type": "optional_type", + "named": true + }, + { + "type": "primitive_type", + "named": true + } + ] + } + }, + { + "type": "list_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "by_ref", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "list_literal", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "match_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "match_conditional_expression", + "named": true + }, + { + "type": "match_default_expression", + "named": true + } + ] + } + }, + { + "type": "match_condition_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "match_conditional_expression", + "named": true, + "fields": { + "conditional_expressions": { + "multiple": false, + "required": true, + "types": [ + { + "type": "match_condition_list", + "named": true + } + ] + }, + "return_expression": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "match_default_expression", + "named": true, + "fields": { + "return_expression": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "match_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "match_block", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "member_access_expression", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + } + }, + { + "type": "member_call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + } + }, + { + "type": "method_declaration", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "reference_modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + }, + { + "type": "bottom_type", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "abstract_modifier", + "named": true + }, + { + "type": "final_modifier", + "named": true + }, + { + "type": "readonly_modifier", + "named": true + }, + { + "type": "static_modifier", + "named": true + }, + { + "type": "var_modifier", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "name", + "named": true, + "fields": {} + }, + { + "type": "named_label_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "named_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "qualified_name", + "named": true + } + ] + } + }, + { + "type": "namespace_aliasing_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "namespace_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "namespace_name", + "named": true + } + ] + } + } + }, + { + "type": "namespace_name", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "namespace_name_as_prefix", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "namespace_name", + "named": true + } + ] + } + }, + { + "type": "namespace_use_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "namespace_aliasing_clause", + "named": true + }, + { + "type": "qualified_name", + "named": true + } + ] + } + }, + { + "type": "namespace_use_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "namespace_name", + "named": true + }, + { + "type": "namespace_use_clause", + "named": true + }, + { + "type": "namespace_use_group", + "named": true + } + ] + } + }, + { + "type": "namespace_use_group", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "namespace_use_group_clause", + "named": true + } + ] + } + }, + { + "type": "namespace_use_group_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "namespace_aliasing_clause", + "named": true + }, + { + "type": "namespace_name", + "named": true + } + ] + } + }, + { + "type": "nowdoc", + "named": true, + "fields": { + "end_tag": { + "multiple": false, + "required": true, + "types": [ + { + "type": "heredoc_end", + "named": true + } + ] + }, + "identifier": { + "multiple": false, + "required": true, + "types": [ + { + "type": "heredoc_start", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "nowdoc_body", + "named": true + } + ] + } + } + }, + { + "type": "nowdoc_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "nowdoc_string", + "named": true + } + ] + } + }, + { + "type": "nullsafe_member_access_expression", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + } + }, + { + "type": "nullsafe_member_call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + } + }, + { + "type": "object_creation_expression", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + }, + { + "type": "base_clause", + "named": true + }, + { + "type": "class_interface_clause", + "named": true + }, + { + "type": "declaration_list", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "optional_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "named_type", + "named": true + }, + { + "type": "primitive_type", + "named": true + } + ] + } + }, + { + "type": "pair", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "by_ref", + "named": true + }, + { + "type": "list_literal", + "named": true + } + ] + } + }, + { + "type": "parenthesized_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "primitive_type", + "named": true, + "fields": {} + }, + { + "type": "print_intrinsic", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "program", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "php_tag", + "named": true + } + ] + } + }, + { + "type": "property_declaration", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "abstract_modifier", + "named": true + }, + { + "type": "final_modifier", + "named": true + }, + { + "type": "property_element", + "named": true + }, + { + "type": "readonly_modifier", + "named": true + }, + { + "type": "static_modifier", + "named": true + }, + { + "type": "var_modifier", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "property_element", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "property_initializer", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "property_initializer", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "property_promotion_parameter", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "default_value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "variable_name", + "named": true + } + ] + }, + "readonly": { + "multiple": false, + "required": false, + "types": [ + { + "type": "readonly_modifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "visibility": { + "multiple": false, + "required": true, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + } + }, + { + "type": "qualified_name", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "namespace_name_as_prefix", + "named": true + } + ] + } + }, + { + "type": "readonly_modifier", + "named": true, + "fields": {} + }, + { + "type": "reference_assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "cast_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "list_literal", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "reference_modifier", + "named": true, + "fields": {} + }, + { + "type": "relative_scope", + "named": true, + "fields": {} + }, + { + "type": "require_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "require_once_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "scoped_call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "scope": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "relative_scope", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + } + }, + { + "type": "scoped_property_access_expression", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + }, + "scope": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "relative_scope", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + } + }, + { + "type": "sequence_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "shell_command_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "string_value", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "simple_parameter", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "default_value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "variable_name", + "named": true + } + ] + }, + "reference_modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + } + }, + { + "type": "static_modifier", + "named": true, + "fields": {} + }, + { + "type": "static_variable_declaration", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "variable_name", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "string", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "string_value", + "named": true + } + ] + } + }, + { + "type": "subscript_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "array_creation_expression", + "named": true + }, + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "encapsed_string", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "heredoc", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "nowdoc", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "switch_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "case_statement", + "named": true + }, + { + "type": "default_statement", + "named": true + } + ] + } + }, + { + "type": "switch_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "switch_block", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "text", + "named": true, + "fields": {} + }, + { + "type": "throw_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "trait_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + } + }, + { + "type": "try_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "catch_clause", + "named": true + }, + { + "type": "finally_clause", + "named": true + } + ] + } + }, + { + "type": "type_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "named_type", + "named": true + } + ] + } + }, + { + "type": "unary_op_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "integer", + "named": true + } + ] + } + }, + { + "type": "union_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "named_type", + "named": true + }, + { + "type": "optional_type", + "named": true + }, + { + "type": "primitive_type", + "named": true + } + ] + } + }, + { + "type": "unset_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "cast_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "update_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "cast_expression", + "named": true + }, + { + "type": "dynamic_variable_name", + "named": true + }, + { + "type": "function_call_expression", + "named": true + }, + { + "type": "member_access_expression", + "named": true + }, + { + "type": "member_call_expression", + "named": true + }, + { + "type": "nullsafe_member_access_expression", + "named": true + }, + { + "type": "nullsafe_member_call_expression", + "named": true + }, + { + "type": "scoped_call_expression", + "named": true + }, + { + "type": "scoped_property_access_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "variable_name", + "named": true + } + ] + } + }, + { + "type": "use_as_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "use_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "qualified_name", + "named": true + }, + { + "type": "use_list", + "named": true + } + ] + } + }, + { + "type": "use_instead_of_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "class_constant_access_expression", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "use_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "use_as_clause", + "named": true + }, + { + "type": "use_instead_of_clause", + "named": true + } + ] + } + }, + { + "type": "variable_name", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "variadic_parameter", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "variable_name", + "named": true + } + ] + }, + "reference_modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + } + }, + { + "type": "variadic_placeholder", + "named": true, + "fields": {} + }, + { + "type": "variadic_unpacking", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "visibility_modifier", + "named": true, + "fields": {} + }, + { + "type": "while_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "colon_block", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "yield_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "array_element_initializer", + "named": true + } + ] + } + }, + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "#[", + "named": false + }, + { + "type": "$", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "**=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": ".=", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<=>", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "===", + "named": false + }, + { + "type": "=>", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "?->", + "named": false + }, + { + "type": "?>", + "named": false + }, + { + "type": "??", + "named": false + }, + { + "type": "??=", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "\\", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "`", + "named": false + }, + { + "type": "abstract", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "array", + "named": false + }, + { + "type": "as", + "named": false + }, + { + "type": "bool", + "named": false + }, + { + "type": "boolean", + "named": true + }, + { + "type": "bottom_type", + "named": true + }, + { + "type": "break", + "named": false + }, + { + "type": "callable", + "named": false + }, + { + "type": "case", + "named": false + }, + { + "type": "catch", + "named": false + }, + { + "type": "class", + "named": false + }, + { + "type": "clone", + "named": false + }, + { + "type": "comment", + "named": true + }, + { + "type": "const", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "declare", + "named": false + }, + { + "type": "default", + "named": false + }, + { + "type": "do", + "named": false + }, + { + "type": "echo", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "elseif", + "named": false + }, + { + "type": "encoding", + "named": false + }, + { + "type": "enddeclare", + "named": false + }, + { + "type": "endfor", + "named": false + }, + { + "type": "endforeach", + "named": false + }, + { + "type": "endif", + "named": false + }, + { + "type": "endswitch", + "named": false + }, + { + "type": "endwhile", + "named": false + }, + { + "type": "enum", + "named": false + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "extends", + "named": false + }, + { + "type": "false", + "named": false + }, + { + "type": "final", + "named": false + }, + { + "type": "finally", + "named": false + }, + { + "type": "float", + "named": true + }, + { + "type": "float", + "named": false + }, + { + "type": "fn", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "foreach", + "named": false + }, + { + "type": "from", + "named": false + }, + { + "type": "function", + "named": false + }, + { + "type": "global", + "named": false + }, + { + "type": "goto", + "named": false + }, + { + "type": "heredoc_end", + "named": true + }, + { + "type": "heredoc_start", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "implements", + "named": false + }, + { + "type": "include", + "named": false + }, + { + "type": "include_once", + "named": false + }, + { + "type": "instanceof", + "named": false + }, + { + "type": "insteadof", + "named": false + }, + { + "type": "int", + "named": false + }, + { + "type": "integer", + "named": true + }, + { + "type": "interface", + "named": false + }, + { + "type": "iterable", + "named": false + }, + { + "type": "list", + "named": false + }, + { + "type": "match", + "named": false + }, + { + "type": "mixed", + "named": false + }, + { + "type": "namespace", + "named": false + }, + { + "type": "new", + "named": false + }, + { + "type": "nowdoc_string", + "named": true + }, + { + "type": "null", + "named": false + }, + { + "type": "null", + "named": true + }, + { + "type": "or", + "named": false + }, + { + "type": "parent", + "named": false + }, + { + "type": "php_tag", + "named": true + }, + { + "type": "print", + "named": false + }, + { + "type": "private", + "named": false + }, + { + "type": "protected", + "named": false + }, + { + "type": "public", + "named": false + }, + { + "type": "readonly", + "named": false + }, + { + "type": "require", + "named": false + }, + { + "type": "require_once", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "self", + "named": false + }, + { + "type": "static", + "named": false + }, + { + "type": "strict_types", + "named": false + }, + { + "type": "string", + "named": false + }, + { + "type": "string_value", + "named": true + }, + { + "type": "switch", + "named": false + }, + { + "type": "throw", + "named": false + }, + { + "type": "ticks", + "named": false + }, + { + "type": "trait", + "named": false + }, + { + "type": "true", + "named": false + }, + { + "type": "try", + "named": false + }, + { + "type": "unset", + "named": false + }, + { + "type": "use", + "named": false + }, + { + "type": "var_modifier", + "named": true + }, + { + "type": "void", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "xor", + "named": false + }, + { + "type": "yield", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + } +] \ No newline at end of file diff --git a/php_only/src/parser.c b/php_only/src/parser.c new file mode 100644 index 00000000..d4ddf3de --- /dev/null +++ b/php_only/src/parser.c @@ -0,0 +1,130551 @@ +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 2612 +#define LARGE_STATE_COUNT 568 +#define SYMBOL_COUNT 397 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 194 +#define EXTERNAL_TOKEN_COUNT 12 +#define FIELD_COUNT 25 +#define MAX_ALIAS_SEQUENCE_LENGTH 12 +#define PRODUCTION_ID_COUNT 182 + +enum ts_symbol_identifiers { + sym_name = 1, + anon_sym_QMARK_GT = 2, + sym_php_tag = 3, + aux_sym_text_token1 = 4, + anon_sym_SEMI = 5, + anon_sym_AMP = 6, + aux_sym_function_static_declaration_token1 = 7, + anon_sym_COMMA = 8, + anon_sym_EQ = 9, + aux_sym_global_declaration_token1 = 10, + aux_sym_namespace_definition_token1 = 11, + aux_sym_namespace_use_declaration_token1 = 12, + aux_sym_namespace_use_declaration_token2 = 13, + aux_sym_namespace_use_declaration_token3 = 14, + anon_sym_BSLASH = 15, + aux_sym_namespace_aliasing_clause_token1 = 16, + anon_sym_LBRACE = 17, + anon_sym_RBRACE = 18, + aux_sym_trait_declaration_token1 = 19, + aux_sym_interface_declaration_token1 = 20, + aux_sym_base_clause_token1 = 21, + aux_sym_enum_declaration_token1 = 22, + anon_sym_COLON = 23, + anon_sym_string = 24, + anon_sym_int = 25, + aux_sym_enum_case_token1 = 26, + aux_sym_class_declaration_token1 = 27, + aux_sym_final_modifier_token1 = 28, + aux_sym_abstract_modifier_token1 = 29, + aux_sym_readonly_modifier_token1 = 30, + aux_sym_class_interface_clause_token1 = 31, + sym_var_modifier = 32, + aux_sym_use_instead_of_clause_token1 = 33, + aux_sym_visibility_modifier_token1 = 34, + aux_sym_visibility_modifier_token2 = 35, + aux_sym_visibility_modifier_token3 = 36, + aux_sym__arrow_function_header_token1 = 37, + anon_sym_EQ_GT = 38, + anon_sym_LPAREN = 39, + anon_sym_RPAREN = 40, + anon_sym_DOT_DOT_DOT = 41, + anon_sym_QMARK = 42, + sym_bottom_type = 43, + anon_sym_PIPE = 44, + anon_sym_array = 45, + aux_sym_primitive_type_token1 = 46, + anon_sym_iterable = 47, + anon_sym_bool = 48, + anon_sym_float = 49, + anon_sym_void = 50, + anon_sym_mixed = 51, + anon_sym_static = 52, + anon_sym_false = 53, + anon_sym_null = 54, + anon_sym_true = 55, + aux_sym_cast_type_token1 = 56, + aux_sym_cast_type_token2 = 57, + aux_sym_cast_type_token3 = 58, + aux_sym_cast_type_token4 = 59, + aux_sym_cast_type_token5 = 60, + aux_sym_cast_type_token6 = 61, + aux_sym_cast_type_token7 = 62, + aux_sym_cast_type_token8 = 63, + aux_sym_cast_type_token9 = 64, + aux_sym_cast_type_token10 = 65, + aux_sym_cast_type_token11 = 66, + aux_sym_cast_type_token12 = 67, + aux_sym_echo_statement_token1 = 68, + anon_sym_unset = 69, + aux_sym_declare_statement_token1 = 70, + aux_sym_declare_statement_token2 = 71, + anon_sym_ticks = 72, + anon_sym_encoding = 73, + anon_sym_strict_types = 74, + sym_float = 75, + aux_sym_try_statement_token1 = 76, + aux_sym_catch_clause_token1 = 77, + aux_sym_finally_clause_token1 = 78, + aux_sym_goto_statement_token1 = 79, + aux_sym_continue_statement_token1 = 80, + aux_sym_break_statement_token1 = 81, + sym_integer = 82, + aux_sym_return_statement_token1 = 83, + aux_sym_throw_expression_token1 = 84, + aux_sym_while_statement_token1 = 85, + aux_sym_while_statement_token2 = 86, + aux_sym_do_statement_token1 = 87, + aux_sym_for_statement_token1 = 88, + aux_sym_for_statement_token2 = 89, + aux_sym_foreach_statement_token1 = 90, + aux_sym_foreach_statement_token2 = 91, + aux_sym_if_statement_token1 = 92, + aux_sym_if_statement_token2 = 93, + aux_sym_else_if_clause_token1 = 94, + aux_sym_else_clause_token1 = 95, + aux_sym_match_expression_token1 = 96, + aux_sym_match_default_expression_token1 = 97, + aux_sym_switch_statement_token1 = 98, + aux_sym_switch_block_token1 = 99, + anon_sym_AT = 100, + anon_sym_PLUS = 101, + anon_sym_DASH = 102, + anon_sym_TILDE = 103, + anon_sym_BANG = 104, + anon_sym_STAR_STAR = 105, + aux_sym_clone_expression_token1 = 106, + anon_sym_COLON_COLON = 107, + aux_sym_print_intrinsic_token1 = 108, + aux_sym_object_creation_expression_token1 = 109, + anon_sym_PLUS_PLUS = 110, + anon_sym_DASH_DASH = 111, + anon_sym_STAR_STAR_EQ = 112, + anon_sym_STAR_EQ = 113, + anon_sym_SLASH_EQ = 114, + anon_sym_PERCENT_EQ = 115, + anon_sym_PLUS_EQ = 116, + anon_sym_DASH_EQ = 117, + anon_sym_DOT_EQ = 118, + anon_sym_LT_LT_EQ = 119, + anon_sym_GT_GT_EQ = 120, + anon_sym_AMP_EQ = 121, + anon_sym_CARET_EQ = 122, + anon_sym_PIPE_EQ = 123, + anon_sym_QMARK_QMARK_EQ = 124, + anon_sym_DASH_GT = 125, + anon_sym_QMARK_DASH_GT = 126, + aux_sym__list_destructing_token1 = 127, + anon_sym_LBRACK = 128, + anon_sym_RBRACK = 129, + anon_sym_self = 130, + anon_sym_parent = 131, + anon_sym_POUND_LBRACK = 132, + sym_escape_sequence = 133, + anon_sym_BSLASHu = 134, + anon_sym_SQUOTE = 135, + anon_sym_LT_QMARK = 136, + anon_sym_QMARK_GT2 = 137, + aux_sym_encapsed_string_token1 = 138, + anon_sym_DQUOTE = 139, + aux_sym_string_token1 = 140, + sym_string_value = 141, + anon_sym_LT_LT_LT = 142, + anon_sym_DQUOTE2 = 143, + sym__new_line = 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__eof = 189, + sym_heredoc_start = 190, + sym_heredoc_end = 191, + sym_nowdoc_string = 192, + sym_sentinel_error = 193, + sym_program = 194, + sym_empty_statement = 195, + sym_reference_modifier = 196, + sym_function_static_declaration = 197, + sym_static_variable_declaration = 198, + sym_global_declaration = 199, + sym_namespace_definition = 200, + sym_namespace_use_declaration = 201, + sym_namespace_use_clause = 202, + sym_qualified_name = 203, + sym_namespace_name_as_prefix = 204, + sym_namespace_name = 205, + sym_namespace_aliasing_clause = 206, + sym_namespace_use_group = 207, + sym_namespace_use_group_clause = 208, + sym_trait_declaration = 209, + sym_interface_declaration = 210, + sym_base_clause = 211, + sym_enum_declaration = 212, + sym_enum_declaration_list = 213, + sym__enum_member_declaration = 214, + sym_enum_case = 215, + sym_class_declaration = 216, + sym_declaration_list = 217, + sym_final_modifier = 218, + sym_abstract_modifier = 219, + sym_readonly_modifier = 220, + sym_class_interface_clause = 221, + sym__member_declaration = 222, + sym_const_declaration = 223, + sym__class_const_declaration = 224, + sym__const_declaration = 225, + sym_property_declaration = 226, + sym__modifier = 227, + sym_property_element = 228, + sym_property_initializer = 229, + sym_method_declaration = 230, + sym_static_modifier = 231, + sym_use_declaration = 232, + sym_use_list = 233, + sym_use_instead_of_clause = 234, + sym_use_as_clause = 235, + sym_visibility_modifier = 236, + sym_function_definition = 237, + sym__function_definition_header = 238, + sym__arrow_function_header = 239, + sym_arrow_function = 240, + sym_formal_parameters = 241, + sym_property_promotion_parameter = 242, + sym_simple_parameter = 243, + sym_variadic_parameter = 244, + sym__type = 245, + sym__types = 246, + sym_named_type = 247, + sym_optional_type = 248, + sym_union_type = 249, + sym_intersection_type = 250, + sym_primitive_type = 251, + sym_cast_type = 252, + sym__return_type = 253, + sym_const_element = 254, + sym_echo_statement = 255, + sym_unset_statement = 256, + sym_declare_statement = 257, + sym_declare_directive = 258, + sym_try_statement = 259, + sym_catch_clause = 260, + sym_type_list = 261, + sym_finally_clause = 262, + sym_goto_statement = 263, + sym_continue_statement = 264, + sym_break_statement = 265, + sym_return_statement = 266, + sym_throw_expression = 267, + sym_while_statement = 268, + sym_do_statement = 269, + sym_for_statement = 270, + sym__expressions = 271, + sym_sequence_expression = 272, + sym_foreach_statement = 273, + sym_foreach_pair = 274, + sym_if_statement = 275, + sym_colon_block = 276, + sym_else_if_clause = 277, + sym_else_clause = 278, + sym_else_if_clause_2 = 279, + sym_else_clause_2 = 280, + sym_match_expression = 281, + sym_match_block = 282, + sym_match_condition_list = 283, + sym_match_conditional_expression = 284, + sym_match_default_expression = 285, + sym_switch_statement = 286, + sym_switch_block = 287, + sym_case_statement = 288, + sym_default_statement = 289, + sym_compound_statement = 290, + sym_named_label_statement = 291, + sym_expression_statement = 292, + sym__expression = 293, + sym__unary_expression = 294, + sym_unary_op_expression = 295, + sym_exponentiation_expression = 296, + sym_clone_expression = 297, + sym__primary_expression = 298, + sym_parenthesized_expression = 299, + sym_class_constant_access_expression = 300, + sym_print_intrinsic = 301, + sym_anonymous_function_creation_expression = 302, + sym_anonymous_function_use_clause = 303, + sym_object_creation_expression = 304, + sym_update_expression = 305, + sym_cast_expression = 306, + sym_cast_variable = 307, + sym_assignment_expression = 308, + sym_reference_assignment_expression = 309, + sym_conditional_expression = 310, + sym_augmented_assignment_expression = 311, + sym_member_access_expression = 312, + sym_nullsafe_member_access_expression = 313, + sym_scoped_property_access_expression = 314, + sym_list_literal = 315, + sym__list_destructing = 316, + sym__array_destructing = 317, + sym__array_destructing_element = 318, + sym_function_call_expression = 319, + sym_scoped_call_expression = 320, + sym__scope_resolution_qualifier = 321, + sym_relative_scope = 322, + sym_variadic_placeholder = 323, + sym_arguments = 324, + sym_argument = 325, + sym_member_call_expression = 326, + sym_nullsafe_member_call_expression = 327, + sym_variadic_unpacking = 328, + sym_subscript_expression = 329, + sym__dereferencable_expression = 330, + sym_array_creation_expression = 331, + sym_attribute_group = 332, + sym_attribute_list = 333, + sym_attribute = 334, + sym__complex_string_part = 335, + sym__simple_string_member_access_expression = 336, + sym__simple_string_subscript_unary_expression = 337, + sym__simple_string_array_access_argument = 338, + sym__simple_string_subscript_expression = 339, + sym__simple_string_part = 340, + aux_sym__interpolated_string_body = 341, + aux_sym__interpolated_string_body_heredoc = 342, + sym_encapsed_string = 343, + sym_string = 344, + sym_heredoc_body = 345, + sym_heredoc = 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_program_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", + [aux_sym_text_token1] = "text_token1", + [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] = "\"", + [sym__new_line] = "_new_line", + [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_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_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_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, + [aux_sym_text_token1] = aux_sym_text_token1, + [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, + [sym__new_line] = sym__new_line, + [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_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_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_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, + }, + [aux_sym_text_token1] = { + .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, + }, + [sym__new_line] = { + .visible = false, + .named = true, + }, + [anon_sym_] = { + .visible = true, + .named = true, + }, + [anon_sym_SQUOTE2] = { + .visible = true, + .named = false, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, + [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_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_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_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 ts_field_identifiers { + 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 = 3}, + [74] = {.index = 161, .length = 2}, + [75] = {.index = 163, .length = 4}, + [76] = {.index = 167, .length = 4}, + [77] = {.index = 171, .length = 3}, + [78] = {.index = 174, .length = 3}, + [79] = {.index = 177, .length = 1}, + [80] = {.index = 178, .length = 4}, + [81] = {.index = 182, .length = 1}, + [82] = {.index = 183, .length = 2}, + [83] = {.index = 183, .length = 2}, + [84] = {.index = 185, .length = 2}, + [85] = {.index = 187, .length = 4}, + [86] = {.index = 191, .length = 2}, + [87] = {.index = 193, .length = 3}, + [88] = {.index = 196, .length = 2}, + [89] = {.index = 198, .length = 4}, + [90] = {.index = 202, .length = 3}, + [91] = {.index = 205, .length = 4}, + [92] = {.index = 209, .length = 3}, + [93] = {.index = 212, .length = 3}, + [94] = {.index = 215, .length = 2}, + [95] = {.index = 217, .length = 3}, + [96] = {.index = 220, .length = 4}, + [97] = {.index = 224, .length = 4}, + [98] = {.index = 228, .length = 3}, + [99] = {.index = 231, .length = 3}, + [100] = {.index = 234, .length = 4}, + [101] = {.index = 238, .length = 4}, + [102] = {.index = 242, .length = 3}, + [103] = {.index = 245, .length = 3}, + [104] = {.index = 248, .length = 4}, + [105] = {.index = 252, .length = 3}, + [106] = {.index = 255, .length = 3}, + [107] = {.index = 258, .length = 3}, + [108] = {.index = 261, .length = 4}, + [109] = {.index = 265, .length = 3}, + [110] = {.index = 268, .length = 3}, + [111] = {.index = 271, .length = 3}, + [112] = {.index = 274, .length = 3}, + [113] = {.index = 277, .length = 4}, + [114] = {.index = 281, .length = 4}, + [115] = {.index = 285, .length = 3}, + [116] = {.index = 288, .length = 4}, + [117] = {.index = 292, .length = 3}, + [118] = {.index = 295, .length = 4}, + [119] = {.index = 299, .length = 2}, + [120] = {.index = 301, .length = 5}, + [121] = {.index = 306, .length = 4}, + [122] = {.index = 310, .length = 5}, + [123] = {.index = 315, .length = 2}, + [124] = {.index = 317, .length = 1}, + [125] = {.index = 318, .length = 2}, + [126] = {.index = 320, .length = 1}, + [129] = {.index = 321, .length = 3}, + [130] = {.index = 324, .length = 5}, + [131] = {.index = 329, .length = 2}, + [132] = {.index = 331, .length = 3}, + [133] = {.index = 334, .length = 4}, + [134] = {.index = 338, .length = 3}, + [135] = {.index = 341, .length = 3}, + [136] = {.index = 344, .length = 4}, + [137] = {.index = 348, .length = 4}, + [138] = {.index = 352, .length = 3}, + [139] = {.index = 355, .length = 5}, + [140] = {.index = 360, .length = 4}, + [141] = {.index = 364, .length = 4}, + [142] = {.index = 368, .length = 3}, + [143] = {.index = 368, .length = 3}, + [144] = {.index = 371, .length = 4}, + [145] = {.index = 375, .length = 5}, + [146] = {.index = 380, .length = 4}, + [147] = {.index = 384, .length = 4}, + [148] = {.index = 388, .length = 4}, + [149] = {.index = 392, .length = 4}, + [150] = {.index = 396, .length = 4}, + [151] = {.index = 400, .length = 4}, + [152] = {.index = 404, .length = 5}, + [153] = {.index = 409, .length = 4}, + [154] = {.index = 413, .length = 4}, + [155] = {.index = 417, .length = 4}, + [156] = {.index = 421, .length = 5}, + [157] = {.index = 426, .length = 6}, + [158] = {.index = 432, .length = 1}, + [159] = {.index = 433, .length = 2}, + [160] = {.index = 435, .length = 1}, + [161] = {.index = 436, .length = 3}, + [162] = {.index = 439, .length = 5}, + [163] = {.index = 444, .length = 4}, + [164] = {.index = 448, .length = 5}, + [165] = {.index = 453, .length = 4}, + [166] = {.index = 457, .length = 4}, + [167] = {.index = 461, .length = 5}, + [168] = {.index = 466, .length = 3}, + [169] = {.index = 469, .length = 4}, + [170] = {.index = 473, .length = 5}, + [171] = {.index = 478, .length = 5}, + [172] = {.index = 483, .length = 5}, + [173] = {.index = 488, .length = 5}, + [174] = {.index = 493, .length = 5}, + [175] = {.index = 498, .length = 2}, + [176] = {.index = 500, .length = 2}, + [177] = {.index = 502, .length = 3}, + [178] = {.index = 505, .length = 5}, + [179] = {.index = 510, .length = 5}, + [180] = {.index = 515, .length = 6}, + [181] = {.index = 521, .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_visibility, 1}, + [158] = + {field_attributes, 0}, + {field_name, 2}, + {field_type, 1}, + [161] = + {field_default_value, 2}, + {field_name, 0}, + [163] = + {field_name, 2}, + {field_parameters, 3}, + {field_reference_modifier, 1}, + {field_return_type, 4, .inherited = true}, + [167] = + {field_body, 4}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + {field_return_type, 3, .inherited = true}, + [171] = + {field_body, 4}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + [174] = + {field_body, 4}, + {field_parameters, 1}, + {field_return_type, 3, .inherited = true}, + [177] = + {field_modifier, 0}, + [178] = + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_reference_modifier, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + [182] = + {field_attributes, 0}, + [183] = + {field_body, 4}, + {field_name, 1}, + [185] = + {field_body, 1}, + {field_condition, 3}, + [187] = + {field_alternative, 3, .inherited = true}, + {field_alternative, 4}, + {field_body, 2}, + {field_condition, 1}, + [191] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [193] = + {field_end_tag, 4}, + {field_identifier, 1}, + {field_value, 2}, + [196] = + {field_end_tag, 4}, + {field_identifier, 2}, + [198] = + {field_end_tag, 4}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + [202] = + {field_body, 4}, + {field_modifier, 0}, + {field_name, 2}, + [205] = + {field_body, 4}, + {field_modifier, 0}, + {field_modifier, 1}, + {field_name, 3}, + [209] = + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [212] = + {field_alternative, 4}, + {field_body, 2}, + {field_condition, 0}, + [215] = + {field_name, 3}, + {field_object, 0}, + [217] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 3}, + [220] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [224] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + [228] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 2}, + [231] = + {field_attributes, 0}, + {field_body, 4}, + {field_name, 2}, + [234] = + {field_attributes, 0}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [238] = + {field_attributes, 0}, + {field_body, 4}, + {field_modifier, 1}, + {field_name, 3}, + [242] = + {field_attributes, 0}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + [245] = + {field_attributes, 0}, + {field_parameters, 3}, + {field_return_type, 4, .inherited = true}, + [248] = + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [252] = + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [255] = + {field_body, 5}, + {field_parameters, 2}, + {field_return_type, 4, .inherited = true}, + [258] = + {field_default_value, 3}, + {field_name, 1}, + {field_reference_modifier, 0}, + [261] = + {field_name, 3}, + {field_readonly, 1}, + {field_type, 2}, + {field_visibility, 0}, + [265] = + {field_default_value, 3}, + {field_name, 1}, + {field_visibility, 0}, + [268] = + {field_name, 3}, + {field_reference_modifier, 1}, + {field_type, 0}, + [271] = + {field_default_value, 3}, + {field_name, 1}, + {field_type, 0}, + [274] = + {field_attributes, 0}, + {field_name, 3}, + {field_reference_modifier, 1}, + [277] = + {field_attributes, 0}, + {field_name, 3}, + {field_readonly, 2}, + {field_visibility, 1}, + [281] = + {field_attributes, 0}, + {field_name, 3}, + {field_type, 2}, + {field_visibility, 1}, + [285] = + {field_attributes, 0}, + {field_name, 3}, + {field_type, 1}, + [288] = + {field_attributes, 0}, + {field_name, 3}, + {field_reference_modifier, 2}, + {field_type, 1}, + [292] = + {field_attributes, 0}, + {field_default_value, 3}, + {field_name, 1}, + [295] = + {field_body, 5}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + {field_return_type, 4, .inherited = true}, + [299] = + {field_attributes, 0}, + {field_modifier, 1}, + [301] = + {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}, + [306] = + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_reference_modifier, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [310] = + {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}, + [315] = + {field_body, 5}, + {field_name, 1}, + [317] = + {field_return_expression, 2}, + [318] = + {field_conditional_expressions, 0}, + {field_return_expression, 2}, + [320] = + {field_value, 1}, + [321] = + {field_end_tag, 5}, + {field_identifier, 2}, + {field_value, 4}, + [324] = + {field_end_tag, 5}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + {field_value, 4}, + [329] = + {field_name, 0}, + {field_reference_modifier, 2}, + [331] = + {field_body, 5}, + {field_modifier, 0}, + {field_name, 2}, + [334] = + {field_body, 5}, + {field_modifier, 0}, + {field_modifier, 1}, + {field_name, 3}, + [338] = + {field_arguments, 5}, + {field_name, 3}, + {field_scope, 0}, + [341] = + {field_arguments, 5}, + {field_name, 3}, + {field_object, 0}, + [344] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + [348] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_return_type, 4, .inherited = true}, + [352] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + [355] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [360] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [364] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 2}, + {field_return_type, 4, .inherited = true}, + [368] = + {field_attributes, 0}, + {field_body, 5}, + {field_name, 2}, + [371] = + {field_attributes, 0}, + {field_body, 5}, + {field_modifier, 1}, + {field_name, 3}, + [375] = + {field_attributes, 0}, + {field_body, 5}, + {field_modifier, 1}, + {field_modifier, 2}, + {field_name, 4}, + [380] = + {field_attributes, 0}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_return_type, 5, .inherited = true}, + [384] = + {field_body, 6}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 5, .inherited = true}, + [388] = + {field_default_value, 4}, + {field_name, 2}, + {field_readonly, 1}, + {field_visibility, 0}, + [392] = + {field_default_value, 4}, + {field_name, 2}, + {field_type, 1}, + {field_visibility, 0}, + [396] = + {field_default_value, 4}, + {field_name, 2}, + {field_reference_modifier, 1}, + {field_type, 0}, + [400] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_reference_modifier, 1}, + [404] = + {field_attributes, 0}, + {field_name, 4}, + {field_readonly, 2}, + {field_type, 3}, + {field_visibility, 1}, + [409] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_visibility, 1}, + [413] = + {field_attributes, 0}, + {field_name, 4}, + {field_reference_modifier, 2}, + {field_type, 1}, + [417] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_type, 1}, + [421] = + {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}, + [426] = + {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}, + [432] = + {field_type, 1}, + [433] = + {field_body, 4}, + {field_type, 2}, + [435] = + {field_body, 6}, + [436] = + {field_end_tag, 6}, + {field_identifier, 2}, + {field_value, 4}, + [439] = + {field_end_tag, 6}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + {field_value, 4}, + [444] = + {field_body, 6}, + {field_modifier, 0}, + {field_modifier, 1}, + {field_name, 3}, + [448] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_return_type, 5, .inherited = true}, + [453] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + [457] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 3}, + {field_return_type, 5, .inherited = true}, + [461] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 5, .inherited = true}, + [466] = + {field_attributes, 0}, + {field_body, 6}, + {field_name, 2}, + [469] = + {field_attributes, 0}, + {field_body, 6}, + {field_modifier, 1}, + {field_name, 3}, + [473] = + {field_attributes, 0}, + {field_body, 6}, + {field_modifier, 1}, + {field_modifier, 2}, + {field_name, 4}, + [478] = + {field_default_value, 5}, + {field_name, 3}, + {field_readonly, 1}, + {field_type, 2}, + {field_visibility, 0}, + [483] = + {field_attributes, 0}, + {field_default_value, 5}, + {field_name, 3}, + {field_readonly, 2}, + {field_visibility, 1}, + [488] = + {field_attributes, 0}, + {field_default_value, 5}, + {field_name, 3}, + {field_type, 2}, + {field_visibility, 1}, + [493] = + {field_attributes, 0}, + {field_default_value, 5}, + {field_name, 3}, + {field_reference_modifier, 2}, + {field_type, 1}, + [498] = + {field_attributes, 0}, + {field_type, 2}, + [500] = + {field_name, 1}, + {field_value, 3}, + [502] = + {field_body, 5}, + {field_name, 3}, + {field_type, 2}, + [505] = + {field_attributes, 0}, + {field_body, 7}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_return_type, 6, .inherited = true}, + [510] = + {field_attributes, 0}, + {field_body, 7}, + {field_modifier, 1}, + {field_modifier, 2}, + {field_name, 4}, + [515] = + {field_attributes, 0}, + {field_default_value, 6}, + {field_name, 4}, + {field_readonly, 2}, + {field_type, 3}, + {field_visibility, 1}, + [521] = + {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, + }, + [82] = { + [3] = sym_primitive_type, + }, + [123] = { + [3] = sym_primitive_type, + }, + [127] = { + [3] = sym_list_literal, + }, + [128] = { + [4] = sym_list_literal, + }, + [142] = { + [4] = sym_primitive_type, + }, + [168] = { + [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] = 7, + [10] = 2, + [11] = 8, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 12, + [16] = 16, + [17] = 12, + [18] = 12, + [19] = 19, + [20] = 19, + [21] = 21, + [22] = 19, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 21, + [27] = 25, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 28, + [34] = 32, + [35] = 35, + [36] = 36, + [37] = 25, + [38] = 38, + [39] = 38, + [40] = 40, + [41] = 41, + [42] = 32, + [43] = 32, + [44] = 44, + [45] = 24, + [46] = 24, + [47] = 41, + [48] = 28, + [49] = 21, + [50] = 30, + [51] = 51, + [52] = 40, + [53] = 53, + [54] = 21, + [55] = 53, + [56] = 51, + [57] = 30, + [58] = 29, + [59] = 21, + [60] = 60, + [61] = 30, + [62] = 60, + [63] = 23, + [64] = 25, + [65] = 30, + [66] = 60, + [67] = 24, + [68] = 31, + [69] = 23, + [70] = 44, + [71] = 19, + [72] = 28, + [73] = 23, + [74] = 36, + [75] = 60, + [76] = 35, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 78, + [81] = 79, + [82] = 77, + [83] = 77, + [84] = 77, + [85] = 85, + [86] = 85, + [87] = 85, + [88] = 85, + [89] = 89, + [90] = 89, + [91] = 89, + [92] = 92, + [93] = 92, + [94] = 92, + [95] = 92, + [96] = 89, + [97] = 89, + [98] = 89, + [99] = 92, + [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] = 113, + [116] = 114, + [117] = 117, + [118] = 117, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 117, + [124] = 124, + [125] = 117, + [126] = 117, + [127] = 122, + [128] = 124, + [129] = 117, + [130] = 117, + [131] = 131, + [132] = 122, + [133] = 131, + [134] = 122, + [135] = 117, + [136] = 119, + [137] = 122, + [138] = 122, + [139] = 120, + [140] = 122, + [141] = 121, + [142] = 122, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 147, + [149] = 149, + [150] = 143, + [151] = 149, + [152] = 152, + [153] = 146, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 159, + [163] = 161, + [164] = 157, + [165] = 158, + [166] = 166, + [167] = 167, + [168] = 161, + [169] = 160, + [170] = 159, + [171] = 160, + [172] = 166, + [173] = 157, + [174] = 161, + [175] = 167, + [176] = 166, + [177] = 158, + [178] = 167, + [179] = 160, + [180] = 157, + [181] = 167, + [182] = 158, + [183] = 159, + [184] = 166, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 189, + [191] = 188, + [192] = 187, + [193] = 193, + [194] = 185, + [195] = 185, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 185, + [200] = 186, + [201] = 185, + [202] = 185, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 205, + [207] = 205, + [208] = 208, + [209] = 204, + [210] = 203, + [211] = 203, + [212] = 212, + [213] = 205, + [214] = 204, + [215] = 204, + [216] = 205, + [217] = 208, + [218] = 203, + [219] = 205, + [220] = 208, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 225, + [229] = 221, + [230] = 230, + [231] = 231, + [232] = 221, + [233] = 226, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 222, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 249, + [253] = 253, + [254] = 227, + [255] = 255, + [256] = 225, + [257] = 221, + [258] = 255, + [259] = 255, + [260] = 227, + [261] = 225, + [262] = 221, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 227, + [270] = 270, + [271] = 271, + [272] = 225, + [273] = 225, + [274] = 227, + [275] = 249, + [276] = 251, + [277] = 221, + [278] = 278, + [279] = 248, + [280] = 280, + [281] = 281, + [282] = 227, + [283] = 225, + [284] = 249, + [285] = 263, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 221, + [293] = 293, + [294] = 267, + [295] = 247, + [296] = 253, + [297] = 264, + [298] = 227, + [299] = 246, + [300] = 245, + [301] = 244, + [302] = 266, + [303] = 225, + [304] = 249, + [305] = 221, + [306] = 270, + [307] = 307, + [308] = 278, + [309] = 280, + [310] = 243, + [311] = 290, + [312] = 312, + [313] = 307, + [314] = 242, + [315] = 281, + [316] = 241, + [317] = 230, + [318] = 240, + [319] = 222, + [320] = 238, + [321] = 231, + [322] = 241, + [323] = 234, + [324] = 235, + [325] = 237, + [326] = 255, + [327] = 236, + [328] = 237, + [329] = 236, + [330] = 267, + [331] = 238, + [332] = 263, + [333] = 235, + [334] = 227, + [335] = 234, + [336] = 240, + [337] = 231, + [338] = 338, + [339] = 241, + [340] = 223, + [341] = 242, + [342] = 243, + [343] = 265, + [344] = 253, + [345] = 244, + [346] = 281, + [347] = 307, + [348] = 348, + [349] = 290, + [350] = 280, + [351] = 278, + [352] = 264, + [353] = 227, + [354] = 266, + [355] = 270, + [356] = 270, + [357] = 225, + [358] = 358, + [359] = 266, + [360] = 255, + [361] = 278, + [362] = 280, + [363] = 363, + [364] = 290, + [365] = 264, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 253, + [373] = 307, + [374] = 226, + [375] = 250, + [376] = 265, + [377] = 377, + [378] = 267, + [379] = 263, + [380] = 250, + [381] = 223, + [382] = 223, + [383] = 255, + [384] = 230, + [385] = 221, + [386] = 226, + [387] = 268, + [388] = 245, + [389] = 265, + [390] = 281, + [391] = 249, + [392] = 268, + [393] = 268, + [394] = 231, + [395] = 246, + [396] = 247, + [397] = 234, + [398] = 235, + [399] = 225, + [400] = 227, + [401] = 248, + [402] = 236, + [403] = 237, + [404] = 404, + [405] = 238, + [406] = 222, + [407] = 407, + [408] = 408, + [409] = 240, + [410] = 251, + [411] = 251, + [412] = 242, + [413] = 248, + [414] = 247, + [415] = 246, + [416] = 245, + [417] = 243, + [418] = 244, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 422, + [424] = 421, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 426, + [429] = 426, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 426, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 439, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 439, + [457] = 439, + [458] = 458, + [459] = 439, + [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] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 455, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 432, + [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] = 434, + [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] = 458, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 551, + [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] = 564, + [566] = 564, + [567] = 564, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 593, + [595] = 592, + [596] = 596, + [597] = 592, + [598] = 598, + [599] = 593, + [600] = 575, + [601] = 572, + [602] = 577, + [603] = 573, + [604] = 574, + [605] = 576, + [606] = 606, + [607] = 575, + [608] = 598, + [609] = 609, + [610] = 583, + [611] = 570, + [612] = 582, + [613] = 589, + [614] = 581, + [615] = 584, + [616] = 580, + [617] = 592, + [618] = 593, + [619] = 571, + [620] = 568, + [621] = 588, + [622] = 587, + [623] = 586, + [624] = 585, + [625] = 596, + [626] = 579, + [627] = 578, + [628] = 609, + [629] = 569, + [630] = 630, + [631] = 590, + [632] = 591, + [633] = 596, + [634] = 634, + [635] = 591, + [636] = 598, + [637] = 637, + [638] = 638, + [639] = 638, + [640] = 640, + [641] = 596, + [642] = 598, + [643] = 643, + [644] = 572, + [645] = 589, + [646] = 646, + [647] = 576, + [648] = 646, + [649] = 577, + [650] = 650, + [651] = 651, + [652] = 573, + [653] = 574, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 579, + [659] = 578, + [660] = 569, + [661] = 661, + [662] = 588, + [663] = 663, + [664] = 661, + [665] = 584, + [666] = 583, + [667] = 582, + [668] = 581, + [669] = 568, + [670] = 571, + [671] = 587, + [672] = 589, + [673] = 580, + [674] = 674, + [675] = 570, + [676] = 585, + [677] = 586, + [678] = 590, + [679] = 679, + [680] = 680, + [681] = 576, + [682] = 650, + [683] = 577, + [684] = 574, + [685] = 573, + [686] = 686, + [687] = 572, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 697, + [698] = 663, + [699] = 690, + [700] = 700, + [701] = 701, + [702] = 576, + [703] = 703, + [704] = 576, + [705] = 577, + [706] = 574, + [707] = 573, + [708] = 572, + [709] = 709, + [710] = 680, + [711] = 577, + [712] = 689, + [713] = 713, + [714] = 574, + [715] = 573, + [716] = 572, + [717] = 717, + [718] = 586, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 563, + [724] = 724, + [725] = 587, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 729, + [734] = 734, + [735] = 578, + [736] = 579, + [737] = 737, + [738] = 590, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 571, + [744] = 569, + [745] = 745, + [746] = 585, + [747] = 747, + [748] = 568, + [749] = 580, + [750] = 581, + [751] = 588, + [752] = 582, + [753] = 583, + [754] = 754, + [755] = 755, + [756] = 570, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 740, + [761] = 584, + [762] = 709, + [763] = 432, + [764] = 574, + [765] = 434, + [766] = 766, + [767] = 577, + [768] = 576, + [769] = 769, + [770] = 573, + [771] = 572, + [772] = 697, + [773] = 773, + [774] = 646, + [775] = 650, + [776] = 776, + [777] = 651, + [778] = 656, + [779] = 657, + [780] = 646, + [781] = 781, + [782] = 583, + [783] = 580, + [784] = 584, + [785] = 588, + [786] = 579, + [787] = 589, + [788] = 581, + [789] = 569, + [790] = 582, + [791] = 585, + [792] = 586, + [793] = 590, + [794] = 587, + [795] = 795, + [796] = 795, + [797] = 568, + [798] = 570, + [799] = 571, + [800] = 800, + [801] = 801, + [802] = 578, + [803] = 574, + [804] = 804, + [805] = 805, + [806] = 663, + [807] = 807, + [808] = 574, + [809] = 703, + [810] = 573, + [811] = 811, + [812] = 577, + [813] = 576, + [814] = 663, + [815] = 815, + [816] = 804, + [817] = 572, + [818] = 689, + [819] = 680, + [820] = 820, + [821] = 650, + [822] = 701, + [823] = 455, + [824] = 589, + [825] = 805, + [826] = 679, + [827] = 811, + [828] = 696, + [829] = 674, + [830] = 572, + [831] = 573, + [832] = 805, + [833] = 574, + [834] = 805, + [835] = 709, + [836] = 820, + [837] = 700, + [838] = 680, + [839] = 689, + [840] = 576, + [841] = 577, + [842] = 458, + [843] = 573, + [844] = 805, + [845] = 572, + [846] = 577, + [847] = 815, + [848] = 692, + [849] = 576, + [850] = 697, + [851] = 804, + [852] = 694, + [853] = 695, + [854] = 570, + [855] = 741, + [856] = 717, + [857] = 755, + [858] = 585, + [859] = 737, + [860] = 582, + [861] = 581, + [862] = 734, + [863] = 757, + [864] = 754, + [865] = 728, + [866] = 569, + [867] = 726, + [868] = 721, + [869] = 579, + [870] = 739, + [871] = 590, + [872] = 580, + [873] = 578, + [874] = 571, + [875] = 588, + [876] = 722, + [877] = 758, + [878] = 731, + [879] = 697, + [880] = 568, + [881] = 584, + [882] = 724, + [883] = 720, + [884] = 583, + [885] = 587, + [886] = 745, + [887] = 697, + [888] = 759, + [889] = 586, + [890] = 742, + [891] = 732, + [892] = 730, + [893] = 563, + [894] = 719, + [895] = 747, + [896] = 709, + [897] = 773, + [898] = 766, + [899] = 781, + [900] = 776, + [901] = 901, + [902] = 902, + [903] = 570, + [904] = 571, + [905] = 569, + [906] = 568, + [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] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 948, + [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] = 455, + [966] = 458, + [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] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 992, + [1002] = 995, + [1003] = 980, + [1004] = 986, + [1005] = 977, + [1006] = 967, + [1007] = 985, + [1008] = 975, + [1009] = 974, + [1010] = 983, + [1011] = 972, + [1012] = 989, + [1013] = 987, + [1014] = 991, + [1015] = 971, + [1016] = 988, + [1017] = 984, + [1018] = 993, + [1019] = 1000, + [1020] = 982, + [1021] = 981, + [1022] = 979, + [1023] = 994, + [1024] = 978, + [1025] = 996, + [1026] = 999, + [1027] = 997, + [1028] = 973, + [1029] = 998, + [1030] = 969, + [1031] = 976, + [1032] = 990, + [1033] = 970, + [1034] = 922, + [1035] = 920, + [1036] = 912, + [1037] = 978, + [1038] = 976, + [1039] = 913, + [1040] = 945, + [1041] = 979, + [1042] = 944, + [1043] = 909, + [1044] = 943, + [1045] = 942, + [1046] = 973, + [1047] = 941, + [1048] = 940, + [1049] = 921, + [1050] = 962, + [1051] = 981, + [1052] = 918, + [1053] = 910, + [1054] = 950, + [1055] = 961, + [1056] = 982, + [1057] = 983, + [1058] = 960, + [1059] = 939, + [1060] = 957, + [1061] = 1000, + [1062] = 929, + [1063] = 972, + [1064] = 951, + [1065] = 928, + [1066] = 955, + [1067] = 948, + [1068] = 975, + [1069] = 1069, + [1070] = 927, + [1071] = 958, + [1072] = 917, + [1073] = 986, + [1074] = 987, + [1075] = 971, + [1076] = 932, + [1077] = 902, + [1078] = 952, + [1079] = 988, + [1080] = 914, + [1081] = 949, + [1082] = 989, + [1083] = 434, + [1084] = 974, + [1085] = 432, + [1086] = 953, + [1087] = 907, + [1088] = 959, + [1089] = 919, + [1090] = 963, + [1091] = 990, + [1092] = 991, + [1093] = 964, + [1094] = 992, + [1095] = 993, + [1096] = 956, + [1097] = 570, + [1098] = 571, + [1099] = 569, + [1100] = 998, + [1101] = 568, + [1102] = 946, + [1103] = 901, + [1104] = 930, + [1105] = 967, + [1106] = 954, + [1107] = 915, + [1108] = 994, + [1109] = 977, + [1110] = 980, + [1111] = 947, + [1112] = 911, + [1113] = 984, + [1114] = 996, + [1115] = 933, + [1116] = 934, + [1117] = 970, + [1118] = 997, + [1119] = 931, + [1120] = 935, + [1121] = 995, + [1122] = 969, + [1123] = 916, + [1124] = 938, + [1125] = 985, + [1126] = 908, + [1127] = 937, + [1128] = 999, + [1129] = 923, + [1130] = 924, + [1131] = 925, + [1132] = 936, + [1133] = 926, + [1134] = 974, + [1135] = 985, + [1136] = 976, + [1137] = 992, + [1138] = 969, + [1139] = 971, + [1140] = 990, + [1141] = 993, + [1142] = 984, + [1143] = 998, + [1144] = 999, + [1145] = 978, + [1146] = 979, + [1147] = 981, + [1148] = 982, + [1149] = 983, + [1150] = 1000, + [1151] = 997, + [1152] = 987, + [1153] = 989, + [1154] = 972, + [1155] = 991, + [1156] = 986, + [1157] = 973, + [1158] = 988, + [1159] = 996, + [1160] = 994, + [1161] = 975, + [1162] = 967, + [1163] = 977, + [1164] = 980, + [1165] = 995, + [1166] = 970, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1168, + [1171] = 967, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1168, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 967, + [1181] = 1181, + [1182] = 1167, + [1183] = 1167, + [1184] = 1184, + [1185] = 1168, + [1186] = 1167, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1188, + [1196] = 1196, + [1197] = 1188, + [1198] = 1198, + [1199] = 1181, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1202, + [1204] = 1188, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1169, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1205, + [1214] = 1207, + [1215] = 1215, + [1216] = 1215, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1169, + [1228] = 1181, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1230, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 1234, + [1237] = 1237, + [1238] = 1233, + [1239] = 1233, + [1240] = 1240, + [1241] = 1230, + [1242] = 1235, + [1243] = 1243, + [1244] = 1235, + [1245] = 1245, + [1246] = 1246, + [1247] = 1234, + [1248] = 1248, + [1249] = 1248, + [1250] = 1250, + [1251] = 1231, + [1252] = 1235, + [1253] = 1234, + [1254] = 1234, + [1255] = 1255, + [1256] = 1256, + [1257] = 1246, + [1258] = 1233, + [1259] = 1231, + [1260] = 1260, + [1261] = 1230, + [1262] = 1262, + [1263] = 1233, + [1264] = 1255, + [1265] = 1233, + [1266] = 1235, + [1267] = 1267, + [1268] = 1235, + [1269] = 1255, + [1270] = 1262, + [1271] = 1233, + [1272] = 1248, + [1273] = 1235, + [1274] = 1243, + [1275] = 1260, + [1276] = 1262, + [1277] = 1277, + [1278] = 1260, + [1279] = 1230, + [1280] = 1230, + [1281] = 1262, + [1282] = 1248, + [1283] = 1262, + [1284] = 1233, + [1285] = 1285, + [1286] = 1243, + [1287] = 1235, + [1288] = 1234, + [1289] = 1255, + [1290] = 1230, + [1291] = 1233, + [1292] = 1262, + [1293] = 1230, + [1294] = 1260, + [1295] = 1240, + [1296] = 1233, + [1297] = 1230, + [1298] = 1260, + [1299] = 1230, + [1300] = 1235, + [1301] = 1260, + [1302] = 1302, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, + [1306] = 1302, + [1307] = 1307, + [1308] = 1308, + [1309] = 1309, + [1310] = 1310, + [1311] = 1311, + [1312] = 1312, + [1313] = 1313, + [1314] = 1314, + [1315] = 1315, + [1316] = 1313, + [1317] = 1315, + [1318] = 1313, + [1319] = 1315, + [1320] = 1320, + [1321] = 1320, + [1322] = 1320, + [1323] = 1304, + [1324] = 1307, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1309, + [1330] = 1330, + [1331] = 1331, + [1332] = 1332, + [1333] = 1333, + [1334] = 1334, + [1335] = 1310, + [1336] = 1336, + [1337] = 1069, + [1338] = 1338, + [1339] = 1311, + [1340] = 1314, + [1341] = 1312, + [1342] = 1342, + [1343] = 432, + [1344] = 1344, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1347, + [1350] = 1350, + [1351] = 1351, + [1352] = 1352, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 434, + [1361] = 1361, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, + [1365] = 1352, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1367, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 512, + [1382] = 1382, + [1383] = 1383, + [1384] = 1383, + [1385] = 1368, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 542, + [1393] = 1388, + [1394] = 1394, + [1395] = 1395, + [1396] = 585, + [1397] = 510, + [1398] = 1398, + [1399] = 1399, + [1400] = 1399, + [1401] = 1398, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, + [1407] = 1405, + [1408] = 1404, + [1409] = 1403, + [1410] = 1410, + [1411] = 585, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 586, + [1418] = 1418, + [1419] = 590, + [1420] = 585, + [1421] = 1421, + [1422] = 1412, + [1423] = 1423, + [1424] = 1416, + [1425] = 650, + [1426] = 1426, + [1427] = 1427, + [1428] = 703, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1434, + [1435] = 1307, + [1436] = 1436, + [1437] = 1437, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1437, + [1444] = 1439, + [1445] = 1440, + [1446] = 1440, + [1447] = 1439, + [1448] = 1308, + [1449] = 1437, + [1450] = 1439, + [1451] = 1436, + [1452] = 1439, + [1453] = 1440, + [1454] = 1303, + [1455] = 1256, + [1456] = 1440, + [1457] = 1436, + [1458] = 1436, + [1459] = 1437, + [1460] = 1437, + [1461] = 585, + [1462] = 1439, + [1463] = 1436, + [1464] = 1440, + [1465] = 1440, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, + [1469] = 1437, + [1470] = 1304, + [1471] = 1439, + [1472] = 1440, + [1473] = 1473, + [1474] = 1440, + [1475] = 1437, + [1476] = 1437, + [1477] = 1439, + [1478] = 1439, + [1479] = 1437, + [1480] = 1440, + [1481] = 1440, + [1482] = 1439, + [1483] = 1437, + [1484] = 1484, + [1485] = 1437, + [1486] = 1440, + [1487] = 1487, + [1488] = 1440, + [1489] = 1439, + [1490] = 420, + [1491] = 1491, + [1492] = 1492, + [1493] = 1492, + [1494] = 1494, + [1495] = 1427, + [1496] = 1494, + [1497] = 1497, + [1498] = 1498, + [1499] = 1497, + [1500] = 419, + [1501] = 1498, + [1502] = 1502, + [1503] = 1503, + [1504] = 585, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 801, + [1509] = 1509, + [1510] = 1503, + [1511] = 1511, + [1512] = 1507, + [1513] = 1467, + [1514] = 1514, + [1515] = 663, + [1516] = 586, + [1517] = 1517, + [1518] = 590, + [1519] = 572, + [1520] = 1418, + [1521] = 663, + [1522] = 1522, + [1523] = 1511, + [1524] = 1426, + [1525] = 1511, + [1526] = 572, + [1527] = 1527, + [1528] = 1503, + [1529] = 1503, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1503, + [1534] = 1534, + [1535] = 663, + [1536] = 1530, + [1537] = 1503, + [1538] = 1530, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1511, + [1543] = 1414, + [1544] = 1415, + [1545] = 1511, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1546, + [1551] = 585, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1547, + [1558] = 1558, + [1559] = 1559, + [1560] = 1555, + [1561] = 1561, + [1562] = 1552, + [1563] = 1563, + [1564] = 1559, + [1565] = 1565, + [1566] = 1553, + [1567] = 1418, + [1568] = 1549, + [1569] = 590, + [1570] = 1426, + [1571] = 1571, + [1572] = 1549, + [1573] = 1573, + [1574] = 1574, + [1575] = 586, + [1576] = 1576, + [1577] = 1415, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1561, + [1582] = 1582, + [1583] = 1583, + [1584] = 1571, + [1585] = 1585, + [1586] = 422, + [1587] = 1587, + [1588] = 1563, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1576, + [1594] = 1553, + [1595] = 1558, + [1596] = 1565, + [1597] = 1597, + [1598] = 1582, + [1599] = 1599, + [1600] = 1574, + [1601] = 1590, + [1602] = 1578, + [1603] = 1603, + [1604] = 1580, + [1605] = 422, + [1606] = 1507, + [1607] = 1579, + [1608] = 421, + [1609] = 1589, + [1610] = 421, + [1611] = 1611, + [1612] = 1585, + [1613] = 1583, + [1614] = 1614, + [1615] = 1611, + [1616] = 1414, + [1617] = 1587, + [1618] = 1618, + [1619] = 1619, + [1620] = 454, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, + [1625] = 1614, + [1626] = 1626, + [1627] = 453, + [1628] = 1628, + [1629] = 1629, + [1630] = 442, + [1631] = 438, + [1632] = 1619, + [1633] = 1633, + [1634] = 437, + [1635] = 1619, + [1636] = 1636, + [1637] = 436, + [1638] = 1619, + [1639] = 1619, + [1640] = 1623, + [1641] = 1641, + [1642] = 1623, + [1643] = 1643, + [1644] = 1644, + [1645] = 1622, + [1646] = 1646, + [1647] = 1647, + [1648] = 1623, + [1649] = 1649, + [1650] = 1623, + [1651] = 1651, + [1652] = 1624, + [1653] = 1653, + [1654] = 1623, + [1655] = 1655, + [1656] = 1656, + [1657] = 1657, + [1658] = 1644, + [1659] = 1623, + [1660] = 1660, + [1661] = 1657, + [1662] = 1619, + [1663] = 1619, + [1664] = 1649, + [1665] = 449, + [1666] = 1666, + [1667] = 1619, + [1668] = 447, + [1669] = 1651, + [1670] = 452, + [1671] = 1671, + [1672] = 1666, + [1673] = 1651, + [1674] = 1674, + [1675] = 1643, + [1676] = 445, + [1677] = 1677, + [1678] = 1514, + [1679] = 1621, + [1680] = 1680, + [1681] = 1592, + [1682] = 1619, + [1683] = 446, + [1684] = 1653, + [1685] = 1623, + [1686] = 1597, + [1687] = 1623, + [1688] = 444, + [1689] = 443, + [1690] = 441, + [1691] = 451, + [1692] = 1692, + [1693] = 1646, + [1694] = 1694, + [1695] = 430, + [1696] = 1619, + [1697] = 1660, + [1698] = 431, + [1699] = 450, + [1700] = 440, + [1701] = 1619, + [1702] = 1619, + [1703] = 435, + [1704] = 425, + [1705] = 1705, + [1706] = 427, + [1707] = 1622, + [1708] = 1623, + [1709] = 1623, + [1710] = 1710, + [1711] = 1711, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1718, + [1719] = 1719, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 1725, + [1726] = 1726, + [1727] = 1727, + [1728] = 1728, + [1729] = 1636, + [1730] = 1725, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1737, + [1738] = 1738, + [1739] = 1724, + [1740] = 1740, + [1741] = 1738, + [1742] = 1742, + [1743] = 1743, + [1744] = 1728, + [1745] = 1745, + [1746] = 1735, + [1747] = 1747, + [1748] = 1723, + [1749] = 1749, + [1750] = 1750, + [1751] = 1710, + [1752] = 1740, + [1753] = 1726, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1727, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1712, + [1763] = 1763, + [1764] = 1742, + [1765] = 1765, + [1766] = 1740, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1772, + [1773] = 1763, + [1774] = 1720, + [1775] = 1732, + [1776] = 1776, + [1777] = 1772, + [1778] = 1771, + [1779] = 1772, + [1780] = 1649, + [1781] = 1671, + [1782] = 1782, + [1783] = 1769, + [1784] = 1784, + [1785] = 1785, + [1786] = 1786, + [1787] = 1787, + [1788] = 1548, + [1789] = 1712, + [1790] = 674, + [1791] = 1736, + [1792] = 1755, + [1793] = 1793, + [1794] = 1737, + [1795] = 1750, + [1796] = 1796, + [1797] = 1797, + [1798] = 1749, + [1799] = 1799, + [1800] = 1800, + [1801] = 1713, + [1802] = 1624, + [1803] = 1782, + [1804] = 1804, + [1805] = 1805, + [1806] = 1806, + [1807] = 1714, + [1808] = 1808, + [1809] = 1809, + [1810] = 1810, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1814, + [1815] = 1815, + [1816] = 1816, + [1817] = 1817, + [1818] = 1818, + [1819] = 1785, + [1820] = 1820, + [1821] = 1793, + [1822] = 1754, + [1823] = 1823, + [1824] = 1734, + [1825] = 1825, + [1826] = 1756, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1800, + [1831] = 1825, + [1832] = 1804, + [1833] = 1805, + [1834] = 1810, + [1835] = 1715, + [1836] = 1820, + [1837] = 1837, + [1838] = 1838, + [1839] = 1740, + [1840] = 1787, + [1841] = 1793, + [1842] = 1768, + [1843] = 1737, + [1844] = 1796, + [1845] = 1828, + [1846] = 1784, + [1847] = 1847, + [1848] = 1848, + [1849] = 1718, + [1850] = 533, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1854, + [1855] = 1855, + [1856] = 1856, + [1857] = 1857, + [1858] = 1858, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1866, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1855, + [1871] = 1871, + [1872] = 1872, + [1873] = 1873, + [1874] = 1869, + [1875] = 1868, + [1876] = 1876, + [1877] = 1867, + [1878] = 1862, + [1879] = 1858, + [1880] = 1880, + [1881] = 1881, + [1882] = 1864, + [1883] = 1883, + [1884] = 1618, + [1885] = 1885, + [1886] = 1852, + [1887] = 1887, + [1888] = 1888, + [1889] = 1889, + [1890] = 1890, + [1891] = 1891, + [1892] = 1863, + [1893] = 1893, + [1894] = 1865, + [1895] = 1871, + [1896] = 1896, + [1897] = 1897, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, + [1902] = 1902, + [1903] = 1903, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, + [1907] = 1888, + [1908] = 1908, + [1909] = 1909, + [1910] = 525, + [1911] = 482, + [1912] = 1912, + [1913] = 483, + [1914] = 485, + [1915] = 487, + [1916] = 1916, + [1917] = 1655, + [1918] = 1918, + [1919] = 1919, + [1920] = 489, + [1921] = 1851, + [1922] = 460, + [1923] = 1923, + [1924] = 500, + [1925] = 561, + [1926] = 505, + [1927] = 508, + [1928] = 509, + [1929] = 513, + [1930] = 1930, + [1931] = 461, + [1932] = 1897, + [1933] = 528, + [1934] = 1934, + [1935] = 545, + [1936] = 1936, + [1937] = 552, + [1938] = 1938, + [1939] = 1939, + [1940] = 555, + [1941] = 1941, + [1942] = 1942, + [1943] = 469, + [1944] = 1944, + [1945] = 472, + [1946] = 1946, + [1947] = 1947, + [1948] = 536, + [1949] = 1949, + [1950] = 1905, + [1951] = 1951, + [1952] = 1859, + [1953] = 537, + [1954] = 1954, + [1955] = 1918, + [1956] = 549, + [1957] = 1919, + [1958] = 556, + [1959] = 1851, + [1960] = 1960, + [1961] = 562, + [1962] = 1962, + [1963] = 554, + [1964] = 1964, + [1965] = 553, + [1966] = 1966, + [1967] = 531, + [1968] = 1968, + [1969] = 527, + [1970] = 1970, + [1971] = 516, + [1972] = 1972, + [1973] = 1973, + [1974] = 1974, + [1975] = 1975, + [1976] = 522, + [1977] = 519, + [1978] = 1978, + [1979] = 532, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, + [1983] = 1983, + [1984] = 1984, + [1985] = 511, + [1986] = 1986, + [1987] = 1987, + [1988] = 1988, + [1989] = 1988, + [1990] = 504, + [1991] = 1966, + [1992] = 1949, + [1993] = 1993, + [1994] = 1934, + [1995] = 495, + [1996] = 1996, + [1997] = 1902, + [1998] = 1901, + [1999] = 493, + [2000] = 2000, + [2001] = 2001, + [2002] = 2002, + [2003] = 2003, + [2004] = 490, + [2005] = 488, + [2006] = 481, + [2007] = 480, + [2008] = 471, + [2009] = 470, + [2010] = 468, + [2011] = 466, + [2012] = 462, + [2013] = 520, + [2014] = 512, + [2015] = 529, + [2016] = 550, + [2017] = 501, + [2018] = 496, + [2019] = 497, + [2020] = 560, + [2021] = 557, + [2022] = 540, + [2023] = 539, + [2024] = 535, + [2025] = 526, + [2026] = 517, + [2027] = 2027, + [2028] = 515, + [2029] = 2029, + [2030] = 1880, + [2031] = 2031, + [2032] = 492, + [2033] = 521, + [2034] = 551, + [2035] = 548, + [2036] = 2036, + [2037] = 463, + [2038] = 1854, + [2039] = 2039, + [2040] = 514, + [2041] = 546, + [2042] = 559, + [2043] = 558, + [2044] = 542, + [2045] = 2045, + [2046] = 2046, + [2047] = 1853, + [2048] = 2048, + [2049] = 498, + [2050] = 2050, + [2051] = 1871, + [2052] = 494, + [2053] = 491, + [2054] = 486, + [2055] = 467, + [2056] = 473, + [2057] = 475, + [2058] = 2058, + [2059] = 476, + [2060] = 1851, + [2061] = 477, + [2062] = 478, + [2063] = 484, + [2064] = 499, + [2065] = 503, + [2066] = 2066, + [2067] = 506, + [2068] = 510, + [2069] = 1628, + [2070] = 530, + [2071] = 534, + [2072] = 541, + [2073] = 2073, + [2074] = 518, + [2075] = 474, + [2076] = 464, + [2077] = 538, + [2078] = 543, + [2079] = 2079, + [2080] = 544, + [2081] = 524, + [2082] = 2082, + [2083] = 479, + [2084] = 1304, + [2085] = 465, + [2086] = 2086, + [2087] = 1851, + [2088] = 1827, + [2089] = 1871, + [2090] = 2090, + [2091] = 2091, + [2092] = 1871, + [2093] = 2093, + [2094] = 2094, + [2095] = 1851, + [2096] = 2096, + [2097] = 1871, + [2098] = 1851, + [2099] = 2099, + [2100] = 2100, + [2101] = 2101, + [2102] = 2102, + [2103] = 1851, + [2104] = 2104, + [2105] = 2105, + [2106] = 1871, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 1871, + [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] = 2129, + [2130] = 2130, + [2131] = 2131, + [2132] = 2132, + [2133] = 2133, + [2134] = 2134, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 2143, + [2144] = 2144, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2128, + [2149] = 2128, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, + [2160] = 2114, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2165, + [2166] = 2131, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 1666, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, + [2184] = 2128, + [2185] = 2185, + [2186] = 2186, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 1903, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 2200, + [2201] = 2124, + [2202] = 2202, + [2203] = 2132, + [2204] = 2139, + [2205] = 2143, + [2206] = 2206, + [2207] = 2207, + [2208] = 2126, + [2209] = 1660, + [2210] = 2210, + [2211] = 2211, + [2212] = 2202, + [2213] = 2213, + [2214] = 2214, + [2215] = 2215, + [2216] = 2207, + [2217] = 2217, + [2218] = 2128, + [2219] = 2219, + [2220] = 2125, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 2190, + [2225] = 2186, + [2226] = 2219, + [2227] = 2227, + [2228] = 2185, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 2232, + [2233] = 2126, + [2234] = 2132, + [2235] = 2170, + [2236] = 2236, + [2237] = 2237, + [2238] = 2238, + [2239] = 2196, + [2240] = 2240, + [2241] = 2195, + [2242] = 2145, + [2243] = 2229, + [2244] = 2175, + [2245] = 2174, + [2246] = 2172, + [2247] = 2116, + [2248] = 2248, + [2249] = 2159, + [2250] = 2150, + [2251] = 2251, + [2252] = 2252, + [2253] = 2253, + [2254] = 2147, + [2255] = 2255, + [2256] = 2119, + [2257] = 2120, + [2258] = 2165, + [2259] = 2259, + [2260] = 2260, + [2261] = 2261, + [2262] = 2194, + [2263] = 2263, + [2264] = 2264, + [2265] = 2169, + [2266] = 2237, + [2267] = 2267, + [2268] = 2191, + [2269] = 2223, + [2270] = 2133, + [2271] = 2236, + [2272] = 2179, + [2273] = 2273, + [2274] = 2274, + [2275] = 2134, + [2276] = 2191, + [2277] = 2277, + [2278] = 2278, + [2279] = 2135, + [2280] = 2199, + [2281] = 2281, + [2282] = 2136, + [2283] = 2151, + [2284] = 2284, + [2285] = 2285, + [2286] = 2137, + [2287] = 2138, + [2288] = 2141, + [2289] = 2289, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 2231, + [2295] = 2295, + [2296] = 2296, + [2297] = 2155, + [2298] = 2298, + [2299] = 2162, + [2300] = 2300, + [2301] = 2301, + [2302] = 2167, + [2303] = 2303, + [2304] = 2304, + [2305] = 2168, + [2306] = 2306, + [2307] = 2200, + [2308] = 2206, + [2309] = 2309, + [2310] = 2310, + [2311] = 2211, + [2312] = 2312, + [2313] = 2295, + [2314] = 2142, + [2315] = 2315, + [2316] = 2316, + [2317] = 2214, + [2318] = 2318, + [2319] = 2319, + [2320] = 2320, + [2321] = 2215, + [2322] = 2322, + [2323] = 2323, + [2324] = 2264, + [2325] = 2325, + [2326] = 2263, + [2327] = 2327, + [2328] = 2217, + [2329] = 2329, + [2330] = 2128, + [2331] = 2331, + [2332] = 2221, + [2333] = 2222, + [2334] = 2334, + [2335] = 2144, + [2336] = 2259, + [2337] = 2113, + [2338] = 2338, + [2339] = 2232, + [2340] = 2251, + [2341] = 2341, + [2342] = 2252, + [2343] = 2255, + [2344] = 2260, + [2345] = 2261, + [2346] = 2281, + [2347] = 2284, + [2348] = 2348, + [2349] = 2292, + [2350] = 2350, + [2351] = 2351, + [2352] = 2352, + [2353] = 2353, + [2354] = 2315, + [2355] = 2355, + [2356] = 2356, + [2357] = 2334, + [2358] = 2126, + [2359] = 2327, + [2360] = 2320, + [2361] = 2319, + [2362] = 2316, + [2363] = 2290, + [2364] = 2210, + [2365] = 2322, + [2366] = 2253, + [2367] = 2278, + [2368] = 2323, + [2369] = 2325, + [2370] = 2274, + [2371] = 2045, + [2372] = 2273, + [2373] = 2329, + [2374] = 2191, + [2375] = 2375, + [2376] = 2350, + [2377] = 2351, + [2378] = 2378, + [2379] = 2132, + [2380] = 2380, + [2381] = 2381, + [2382] = 2352, + [2383] = 2383, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 2387, + [2388] = 2388, + [2389] = 2389, + [2390] = 2390, + [2391] = 2391, + [2392] = 2392, + [2393] = 2393, + [2394] = 2394, + [2395] = 2046, + [2396] = 2396, + [2397] = 2397, + [2398] = 2398, + [2399] = 2399, + [2400] = 2400, + [2401] = 2401, + [2402] = 2402, + [2403] = 2393, + [2404] = 2404, + [2405] = 2405, + [2406] = 2406, + [2407] = 2407, + [2408] = 2408, + [2409] = 2409, + [2410] = 2410, + [2411] = 2400, + [2412] = 2398, + [2413] = 2397, + [2414] = 2414, + [2415] = 2415, + [2416] = 2416, + [2417] = 2417, + [2418] = 2418, + [2419] = 2419, + [2420] = 2409, + [2421] = 2421, + [2422] = 2422, + [2423] = 2388, + [2424] = 2029, + [2425] = 2425, + [2426] = 2426, + [2427] = 2396, + [2428] = 2428, + [2429] = 2429, + [2430] = 2430, + [2431] = 2431, + [2432] = 2394, + [2433] = 2433, + [2434] = 2434, + [2435] = 2435, + [2436] = 2401, + [2437] = 2402, + [2438] = 2405, + [2439] = 2439, + [2440] = 2440, + [2441] = 2441, + [2442] = 2391, + [2443] = 2389, + [2444] = 2444, + [2445] = 2407, + [2446] = 2446, + [2447] = 2389, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2406, + [2452] = 2452, + [2453] = 2391, + [2454] = 2393, + [2455] = 2455, + [2456] = 2418, + [2457] = 2457, + [2458] = 2458, + [2459] = 2386, + [2460] = 2401, + [2461] = 2402, + [2462] = 2405, + [2463] = 2408, + [2464] = 2440, + [2465] = 2388, + [2466] = 2466, + [2467] = 2426, + [2468] = 2430, + [2469] = 2469, + [2470] = 2431, + [2471] = 2407, + [2472] = 2407, + [2473] = 2448, + [2474] = 2406, + [2475] = 2455, + [2476] = 2421, + [2477] = 2477, + [2478] = 2478, + [2479] = 2407, + [2480] = 2408, + [2481] = 2481, + [2482] = 2396, + [2483] = 2483, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 2388, + [2488] = 2488, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2408, + [2495] = 2466, + [2496] = 2484, + [2497] = 2497, + [2498] = 2498, + [2499] = 2489, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2405, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 2488, + [2508] = 2508, + [2509] = 2509, + [2510] = 2510, + [2511] = 2509, + [2512] = 2508, + [2513] = 2498, + [2514] = 2393, + [2515] = 2429, + [2516] = 2493, + [2517] = 2483, + [2518] = 2439, + [2519] = 2406, + [2520] = 2481, + [2521] = 2390, + [2522] = 2522, + [2523] = 2419, + [2524] = 2414, + [2525] = 2433, + [2526] = 2477, + [2527] = 2387, + [2528] = 2528, + [2529] = 2529, + [2530] = 2530, + [2531] = 2408, + [2532] = 2389, + [2533] = 2497, + [2534] = 2449, + [2535] = 2391, + [2536] = 2536, + [2537] = 2537, + [2538] = 2394, + [2539] = 2433, + [2540] = 2396, + [2541] = 2510, + [2542] = 2429, + [2543] = 2398, + [2544] = 2544, + [2545] = 2545, + [2546] = 2405, + [2547] = 2547, + [2548] = 2405, + [2549] = 2405, + [2550] = 2550, + [2551] = 2551, + [2552] = 2429, + [2553] = 2506, + [2554] = 2505, + [2555] = 2429, + [2556] = 2434, + [2557] = 2405, + [2558] = 2441, + [2559] = 2387, + [2560] = 2560, + [2561] = 2405, + [2562] = 2394, + [2563] = 2449, + [2564] = 2402, + [2565] = 2401, + [2566] = 2429, + [2567] = 2505, + [2568] = 2568, + [2569] = 2504, + [2570] = 2444, + [2571] = 2571, + [2572] = 2421, + [2573] = 2573, + [2574] = 2405, + [2575] = 2478, + [2576] = 2576, + [2577] = 2577, + [2578] = 2422, + [2579] = 2429, + [2580] = 2580, + [2581] = 2581, + [2582] = 2582, + [2583] = 2405, + [2584] = 2584, + [2585] = 2585, + [2586] = 2405, + [2587] = 2450, + [2588] = 2522, + [2589] = 2446, + [2590] = 2405, + [2591] = 2387, + [2592] = 2581, + [2593] = 2580, + [2594] = 2449, + [2595] = 2581, + [2596] = 2528, + [2597] = 2446, + [2598] = 2529, + [2599] = 2581, + [2600] = 2584, + [2601] = 2530, + [2602] = 2536, + [2603] = 2446, + [2604] = 2537, + [2605] = 2584, + [2606] = 2425, + [2607] = 2584, + [2608] = 2582, + [2609] = 2429, + [2610] = 2582, + [2611] = 2582, +}; + +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(); + switch (state) { + case 0: + if (eof) ADVANCE(73); + if (lookahead == '!') ADVANCE(130); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(220); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(180); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(215); + if (lookahead == '+') ADVANCE(122); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(213); + if (lookahead == '/') ADVANCE(218); + if (lookahead == '0') ADVANCE(111); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(198); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(202); + if (lookahead == '?') ADVANCE(94); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(192); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(181); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(221); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(224); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(225); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(243); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(258); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(251); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(247); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(70) + if (('C' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(263); + END_STATE(); + case 2: + if (lookahead == '\n') ADVANCE(263); + if (lookahead == '\r') ADVANCE(1); + if (lookahead != 0 && + lookahead != '>') ADVANCE(264); + END_STATE(); + case 3: + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(177); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '-') ADVANCE(36); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '?') ADVANCE(38); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(59); + if (lookahead == '{') ADVANCE(85); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(4) + END_STATE(); + case 4: + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(177); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '-') ADVANCE(36); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '?') ADVANCE(38); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '{') ADVANCE(85); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(4) + END_STATE(); + case 5: + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(178); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '/') ADVANCE(24); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(5) + END_STATE(); + case 6: + if (lookahead == '!') ADVANCE(130); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(219); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(213); + if (lookahead == '/') ADVANCE(217); + if (lookahead == '0') ADVANCE(111); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(199); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(203); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(191); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(181); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(222); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(224); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(226); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(258); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(256); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(247); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(6) + if (('C' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(111); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(181); + if (lookahead == '~') ADVANCE(128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(222); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(224); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(226); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(258); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(256); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(247); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(7) + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 8: + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == '+') ADVANCE(121); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(111); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(181); + if (lookahead == '~') ADVANCE(128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(221); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(224); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(225); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(243); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(258); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(251); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(247); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(8) + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 9: + if (lookahead == '!') ADVANCE(34); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(219); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(180); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(217); + if (lookahead == '0') ADVANCE(116); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(203); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(191); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(12) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 10: + if (lookahead == '!') ADVANCE(34); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(219); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(217); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(203); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(59); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(191); + if (lookahead == '`') ADVANCE(181); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(11) + if (('A' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 11: + if (lookahead == '!') ADVANCE(34); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(219); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(217); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(203); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(191); + if (lookahead == '`') ADVANCE(181); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(11) + if (('A' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 12: + if (lookahead == '!') ADVANCE(34); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(219); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(217); + if (lookahead == '0') ADVANCE(116); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(203); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(191); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(12) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 13: + if (lookahead == '!') ADVANCE(34); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(219); + if (lookahead == '&') ADVANCE(79); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(123); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(217); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(203); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(191); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (('\t' <= lookahead && 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(262); + END_STATE(); + case 14: + if (lookahead == '"') ADVANCE(163); + if (lookahead == '\'') ADVANCE(165); + END_STATE(); + case 15: + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(222); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(256); + if (('\t' <= lookahead && 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(262); + END_STATE(); + case 16: + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(116); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '}') ADVANCE(86); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(222); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(256); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(16) + if (('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 17: + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(111); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(38); + if (lookahead == '\\') ADVANCE(59); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '{') ADVANCE(85); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(14); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(45); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(55); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(52); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(18) + END_STATE(); + case 18: + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(111); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(38); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '{') ADVANCE(85); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(14); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(45); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(55); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(52); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(18) + END_STATE(); + case 19: + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '&') ADVANCE(78); + if (lookahead == ')') ADVANCE(91); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '.') ADVANCE(27); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '?') ADVANCE(93); + if (lookahead == '\\') ADVANCE(84); + if (('\t' <= lookahead && 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(262); + END_STATE(); + case 20: + if (lookahead == '#') ADVANCE(265); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '}') ADVANCE(86); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(256); + if (('\t' <= lookahead && 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(262); + END_STATE(); + case 21: + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '.') ADVANCE(27); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '=') ADVANCE(37); + if (lookahead == '?') ADVANCE(93); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(98); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(256); + if (('\t' <= lookahead && 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(262); + END_STATE(); + case 22: + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '.') ADVANCE(27); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '?') ADVANCE(93); + if (lookahead == '\\') ADVANCE(84); + if (('\t' <= lookahead && 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(262); + END_STATE(); + case 23: + if (lookahead == '#') ADVANCE(174); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(169); + if (lookahead == '\\') ADVANCE(69); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(168); + if (lookahead != 0) ADVANCE(173); + END_STATE(); + case 24: + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(264); + END_STATE(); + case 25: + if (lookahead == '*') ADVANCE(25); + if (lookahead == '/') ADVANCE(263); + if (lookahead != 0) ADVANCE(26); + END_STATE(); + case 26: + if (lookahead == '*') ADVANCE(25); + if (lookahead != 0) ADVANCE(26); + END_STATE(); + case 27: + if (lookahead == '.') ADVANCE(29); + END_STATE(); + case 28: + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(62); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28); + END_STATE(); + case 29: + if (lookahead == '.') ADVANCE(92); + END_STATE(); + case 30: + if (lookahead == '<') ADVANCE(33); + END_STATE(); + case 31: + if (lookahead == '<') ADVANCE(33); + if (lookahead == '?') ADVANCE(76); + END_STATE(); + case 32: + if (lookahead == '<') ADVANCE(33); + if (lookahead == '?') ADVANCE(161); + END_STATE(); + case 33: + if (lookahead == '<') ADVANCE(175); + END_STATE(); + case 34: + if (lookahead == '=') ADVANCE(194); + END_STATE(); + case 35: + if (lookahead == '=') ADVANCE(193); + if (lookahead == '>') ADVANCE(89); + END_STATE(); + case 36: + if (lookahead == '>') ADVANCE(149); + END_STATE(); + case 37: + if (lookahead == '>') ADVANCE(89); + END_STATE(); + case 38: + if (lookahead == '>') ADVANCE(162); + END_STATE(); + case 39: + if (lookahead == '>') ADVANCE(150); + END_STATE(); + case 40: + if (lookahead == '>') ADVANCE(74); + END_STATE(); + case 41: + if (lookahead == '?') ADVANCE(161); + END_STATE(); + case 42: + if (lookahead == 'u') ADVANCE(158); + END_STATE(); + case 43: + if (lookahead == '}') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + END_STATE(); + case 44: + if (lookahead == '+' || + lookahead == '-') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + END_STATE(); + case 45: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(48); + END_STATE(); + case 46: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(182); + END_STATE(); + case 47: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(51); + END_STATE(); + case 48: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(53); + END_STATE(); + case 49: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(184); + END_STATE(); + case 50: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(49); + END_STATE(); + case 51: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(75); + END_STATE(); + case 52: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(54); + END_STATE(); + case 53: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(46); + END_STATE(); + case 54: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(46); + END_STATE(); + case 55: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(50); + END_STATE(); + case 56: + if (lookahead == '0' || + lookahead == '1') ADVANCE(114); + END_STATE(); + case 57: + if (lookahead == '8' || + lookahead == '9') ADVANCE(28); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + END_STATE(); + case 58: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + END_STATE(); + case 59: + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(154); + if (lookahead == 'u') ADVANCE(159); + if (lookahead == 'x') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(156); + END_STATE(); + case 60: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + END_STATE(); + case 61: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + END_STATE(); + case 62: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28); + END_STATE(); + case 63: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + END_STATE(); + case 64: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + END_STATE(); + case 65: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + END_STATE(); + case 66: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); + END_STATE(); + case 67: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + END_STATE(); + case 68: + if (lookahead != 0 && + lookahead != '*') ADVANCE(171); + if (lookahead == '*') ADVANCE(170); + END_STATE(); + case 69: + if (lookahead != 0) ADVANCE(173); + END_STATE(); + case 70: + if (eof) ADVANCE(73); + if (lookahead == '!') ADVANCE(130); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(220); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(215); + if (lookahead == '+') ADVANCE(122); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(213); + if (lookahead == '/') ADVANCE(218); + if (lookahead == '0') ADVANCE(111); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(198); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(202); + if (lookahead == '?') ADVANCE(94); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(192); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(181); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(221); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(224); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(225); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(243); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(258); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(251); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(247); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(70) + if (('C' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 71: + if (eof) ADVANCE(73); + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(111); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(31); + if (lookahead == '?') ADVANCE(40); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(181); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(222); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(224); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(226); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(258); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(256); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(247); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(71) + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 72: + if (eof) ADVANCE(73); + if (lookahead == '!') ADVANCE(34); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '$') ADVANCE(186); + if (lookahead == '%') ADVANCE(220); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(215); + if (lookahead == '+') ADVANCE(122); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '/') ADVANCE(218); + if (lookahead == '0') ADVANCE(116); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(202); + if (lookahead == '?') ADVANCE(95); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(192); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(72) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 73: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_QMARK_GT); + END_STATE(); + case 75: + ACCEPT_TOKEN(sym_php_tag); + END_STATE(); + case 76: + ACCEPT_TOKEN(sym_php_tag); + if (lookahead == '=') ADVANCE(75); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(47); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(190); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '=') ADVANCE(145); + END_STATE(); + case 81: + 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(262); + END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(193); + if (lookahead == '>') ADVANCE(89); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_BSLASH); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(133); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(188); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '?') ADVANCE(188); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '?') ADVANCE(187); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '?') ADVANCE(187); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(147); + if (lookahead == '|') ADVANCE(189); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(189); + END_STATE(); + case 101: + 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(262); + END_STATE(); + case 102: + 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(262); + END_STATE(); + case 103: + 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(262); + END_STATE(); + case 104: + 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(262); + END_STATE(); + case 105: + 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(262); + END_STATE(); + case 106: + 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(262); + END_STATE(); + case 107: + ACCEPT_TOKEN(sym_float); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '_') ADVANCE(61); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + END_STATE(); + case 108: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(61); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + END_STATE(); + case 109: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 110: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + END_STATE(); + case 111: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(57); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(56); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(117); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(65); + if (lookahead == '8' || + lookahead == '9') ADVANCE(28); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(57); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (lookahead == '8' || + lookahead == '9') ADVANCE(28); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + END_STATE(); + case 113: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(60); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + END_STATE(); + case 114: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(56); + if (lookahead == '0' || + lookahead == '1') ADVANCE(114); + END_STATE(); + case 115: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + END_STATE(); + case 116: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(58); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(56); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(117); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + END_STATE(); + case 117: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + END_STATE(); + case 118: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(134); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(134); + if (lookahead == '=') ADVANCE(140); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(135); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '=') ADVANCE(141); + if (lookahead == '>') ADVANCE(149); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '>') ADVANCE(149); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(149); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(194); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(136); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_DOT_EQ); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym_escape_sequence); + 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 <= '7')) ADVANCE(155); + END_STATE(); + case 157: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_BSLASHu); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_BSLASHu); + if (lookahead == '{') ADVANCE(67); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_LT_QMARK); + 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(267); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(172); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '\n') ADVANCE(173); + if (lookahead == '\\') ADVANCE(69); + 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(69); + if (('\t' <= lookahead && 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(69); + 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(68); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(171); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '\\') ADVANCE(68); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(171); + END_STATE(); + case 172: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '\\') ADVANCE(267); + 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(69); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(173); + END_STATE(); + case 174: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '\\') ADVANCE(267); + 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(sym__new_line); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(177); + if (lookahead == '?') ADVANCE(38); + END_STATE(); + case 178: + ACCEPT_TOKEN(sym__new_line); + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(178); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_SQUOTE2); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 182: + ACCEPT_TOKEN(sym_boolean); + END_STATE(); + case 183: + ACCEPT_TOKEN(sym_boolean); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 184: + ACCEPT_TOKEN(sym_null); + END_STATE(); + case 185: + ACCEPT_TOKEN(sym_null); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(148); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(146); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(196); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(197); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 198: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(208); + if (lookahead == '=') ADVANCE(204); + if (lookahead == '>') ADVANCE(195); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(204); + if (lookahead == '>') ADVANCE(195); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(207); + if (lookahead == '=') ADVANCE(204); + if (lookahead == '>') ADVANCE(195); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(211); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(210); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(206); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(175); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(143); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(144); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '_') ADVANCE(61); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '=') ADVANCE(142); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(132); + if (lookahead == '=') ADVANCE(137); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(131); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(264); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(264); + if (lookahead == '=') ADVANCE(138); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(139); + END_STATE(); + case 221: + ACCEPT_TOKEN(sym_name); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '\'') ADVANCE(165); + 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(262); + END_STATE(); + case 222: + 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(262); + END_STATE(); + case 223: + ACCEPT_TOKEN(sym_name); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(260); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 224: + ACCEPT_TOKEN(sym_name); + if (lookahead == '+' || + lookahead == '-') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 225: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(240); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 226: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(240); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(255); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(236); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 229: + 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(262); + END_STATE(); + case 230: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(253); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 231: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 232: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 233: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 234: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 235: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(231); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 236: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(242); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 237: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 238: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 239: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(238); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(230); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(237); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(227); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(232); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(233); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(228); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 252: + 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(262); + END_STATE(); + case 253: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 255: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(235); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 256: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(232); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(239); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym_name); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym_name); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_name); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(262); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 264: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '?') ADVANCE(2); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(264); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '[') ADVANCE(153); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?') ADVANCE(264); + END_STATE(); + case 266: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?' && + lookahead != '[') ADVANCE(264); + END_STATE(); + case 267: + 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(); + 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 (('\t' <= lookahead && 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 = 71}, + [3] = {.lex_state = 71}, + [4] = {.lex_state = 71}, + [5] = {.lex_state = 71}, + [6] = {.lex_state = 71}, + [7] = {.lex_state = 71}, + [8] = {.lex_state = 71}, + [9] = {.lex_state = 71}, + [10] = {.lex_state = 71}, + [11] = {.lex_state = 71}, + [12] = {.lex_state = 71, .external_lex_state = 2}, + [13] = {.lex_state = 71}, + [14] = {.lex_state = 71}, + [15] = {.lex_state = 71, .external_lex_state = 2}, + [16] = {.lex_state = 71}, + [17] = {.lex_state = 71, .external_lex_state = 2}, + [18] = {.lex_state = 71, .external_lex_state = 2}, + [19] = {.lex_state = 71, .external_lex_state = 2}, + [20] = {.lex_state = 71, .external_lex_state = 2}, + [21] = {.lex_state = 71}, + [22] = {.lex_state = 71, .external_lex_state = 2}, + [23] = {.lex_state = 71}, + [24] = {.lex_state = 71, .external_lex_state = 2}, + [25] = {.lex_state = 71, .external_lex_state = 2}, + [26] = {.lex_state = 71}, + [27] = {.lex_state = 71, .external_lex_state = 2}, + [28] = {.lex_state = 71, .external_lex_state = 2}, + [29] = {.lex_state = 71}, + [30] = {.lex_state = 71}, + [31] = {.lex_state = 71}, + [32] = {.lex_state = 71, .external_lex_state = 2}, + [33] = {.lex_state = 71, .external_lex_state = 2}, + [34] = {.lex_state = 71, .external_lex_state = 2}, + [35] = {.lex_state = 71}, + [36] = {.lex_state = 71}, + [37] = {.lex_state = 71, .external_lex_state = 2}, + [38] = {.lex_state = 71}, + [39] = {.lex_state = 71}, + [40] = {.lex_state = 71}, + [41] = {.lex_state = 71}, + [42] = {.lex_state = 71, .external_lex_state = 2}, + [43] = {.lex_state = 71, .external_lex_state = 2}, + [44] = {.lex_state = 71}, + [45] = {.lex_state = 71, .external_lex_state = 2}, + [46] = {.lex_state = 71, .external_lex_state = 2}, + [47] = {.lex_state = 71}, + [48] = {.lex_state = 71, .external_lex_state = 2}, + [49] = {.lex_state = 71}, + [50] = {.lex_state = 71}, + [51] = {.lex_state = 71}, + [52] = {.lex_state = 71}, + [53] = {.lex_state = 71}, + [54] = {.lex_state = 71}, + [55] = {.lex_state = 71}, + [56] = {.lex_state = 71}, + [57] = {.lex_state = 71}, + [58] = {.lex_state = 71}, + [59] = {.lex_state = 71}, + [60] = {.lex_state = 71}, + [61] = {.lex_state = 71}, + [62] = {.lex_state = 71}, + [63] = {.lex_state = 71}, + [64] = {.lex_state = 71, .external_lex_state = 2}, + [65] = {.lex_state = 71}, + [66] = {.lex_state = 71}, + [67] = {.lex_state = 71, .external_lex_state = 2}, + [68] = {.lex_state = 71}, + [69] = {.lex_state = 71}, + [70] = {.lex_state = 71}, + [71] = {.lex_state = 71, .external_lex_state = 2}, + [72] = {.lex_state = 71, .external_lex_state = 2}, + [73] = {.lex_state = 71}, + [74] = {.lex_state = 71}, + [75] = {.lex_state = 71}, + [76] = {.lex_state = 71}, + [77] = {.lex_state = 71}, + [78] = {.lex_state = 71}, + [79] = {.lex_state = 71}, + [80] = {.lex_state = 71}, + [81] = {.lex_state = 71}, + [82] = {.lex_state = 71}, + [83] = {.lex_state = 71}, + [84] = {.lex_state = 71}, + [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 = 7}, + [119] = {.lex_state = 71}, + [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 = 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 = 71}, + [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 = 71}, + [145] = {.lex_state = 71}, + [146] = {.lex_state = 71}, + [147] = {.lex_state = 71}, + [148] = {.lex_state = 71}, + [149] = {.lex_state = 71}, + [150] = {.lex_state = 7}, + [151] = {.lex_state = 71}, + [152] = {.lex_state = 7}, + [153] = {.lex_state = 71}, + [154] = {.lex_state = 71}, + [155] = {.lex_state = 7}, + [156] = {.lex_state = 71}, + [157] = {.lex_state = 71}, + [158] = {.lex_state = 71}, + [159] = {.lex_state = 71}, + [160] = {.lex_state = 71}, + [161] = {.lex_state = 71}, + [162] = {.lex_state = 71}, + [163] = {.lex_state = 71}, + [164] = {.lex_state = 71}, + [165] = {.lex_state = 71}, + [166] = {.lex_state = 71}, + [167] = {.lex_state = 71}, + [168] = {.lex_state = 71}, + [169] = {.lex_state = 71}, + [170] = {.lex_state = 71}, + [171] = {.lex_state = 71}, + [172] = {.lex_state = 71}, + [173] = {.lex_state = 71}, + [174] = {.lex_state = 71}, + [175] = {.lex_state = 71}, + [176] = {.lex_state = 71}, + [177] = {.lex_state = 71}, + [178] = {.lex_state = 71}, + [179] = {.lex_state = 71}, + [180] = {.lex_state = 71}, + [181] = {.lex_state = 71}, + [182] = {.lex_state = 71}, + [183] = {.lex_state = 71}, + [184] = {.lex_state = 71}, + [185] = {.lex_state = 71}, + [186] = {.lex_state = 71}, + [187] = {.lex_state = 71, .external_lex_state = 2}, + [188] = {.lex_state = 71, .external_lex_state = 2}, + [189] = {.lex_state = 71, .external_lex_state = 2}, + [190] = {.lex_state = 71, .external_lex_state = 2}, + [191] = {.lex_state = 71, .external_lex_state = 2}, + [192] = {.lex_state = 71, .external_lex_state = 2}, + [193] = {.lex_state = 7}, + [194] = {.lex_state = 71}, + [195] = {.lex_state = 71}, + [196] = {.lex_state = 7}, + [197] = {.lex_state = 71}, + [198] = {.lex_state = 71}, + [199] = {.lex_state = 71}, + [200] = {.lex_state = 71}, + [201] = {.lex_state = 71}, + [202] = {.lex_state = 71}, + [203] = {.lex_state = 71}, + [204] = {.lex_state = 71}, + [205] = {.lex_state = 71}, + [206] = {.lex_state = 71}, + [207] = {.lex_state = 71}, + [208] = {.lex_state = 71}, + [209] = {.lex_state = 71}, + [210] = {.lex_state = 71}, + [211] = {.lex_state = 71}, + [212] = {.lex_state = 71}, + [213] = {.lex_state = 71}, + [214] = {.lex_state = 71}, + [215] = {.lex_state = 71}, + [216] = {.lex_state = 71}, + [217] = {.lex_state = 71}, + [218] = {.lex_state = 71}, + [219] = {.lex_state = 71}, + [220] = {.lex_state = 71}, + [221] = {.lex_state = 71}, + [222] = {.lex_state = 71}, + [223] = {.lex_state = 71}, + [224] = {.lex_state = 71}, + [225] = {.lex_state = 71}, + [226] = {.lex_state = 71}, + [227] = {.lex_state = 71}, + [228] = {.lex_state = 71}, + [229] = {.lex_state = 71}, + [230] = {.lex_state = 71}, + [231] = {.lex_state = 71}, + [232] = {.lex_state = 71}, + [233] = {.lex_state = 71}, + [234] = {.lex_state = 71}, + [235] = {.lex_state = 71}, + [236] = {.lex_state = 71}, + [237] = {.lex_state = 71}, + [238] = {.lex_state = 71}, + [239] = {.lex_state = 71}, + [240] = {.lex_state = 71}, + [241] = {.lex_state = 71}, + [242] = {.lex_state = 71}, + [243] = {.lex_state = 71}, + [244] = {.lex_state = 71}, + [245] = {.lex_state = 71}, + [246] = {.lex_state = 71}, + [247] = {.lex_state = 71}, + [248] = {.lex_state = 71}, + [249] = {.lex_state = 71}, + [250] = {.lex_state = 71}, + [251] = {.lex_state = 71}, + [252] = {.lex_state = 71}, + [253] = {.lex_state = 71}, + [254] = {.lex_state = 71}, + [255] = {.lex_state = 71}, + [256] = {.lex_state = 71}, + [257] = {.lex_state = 71}, + [258] = {.lex_state = 71}, + [259] = {.lex_state = 71}, + [260] = {.lex_state = 71}, + [261] = {.lex_state = 71}, + [262] = {.lex_state = 71}, + [263] = {.lex_state = 71}, + [264] = {.lex_state = 71}, + [265] = {.lex_state = 71}, + [266] = {.lex_state = 71}, + [267] = {.lex_state = 71}, + [268] = {.lex_state = 71}, + [269] = {.lex_state = 71}, + [270] = {.lex_state = 71}, + [271] = {.lex_state = 71}, + [272] = {.lex_state = 71}, + [273] = {.lex_state = 71}, + [274] = {.lex_state = 71}, + [275] = {.lex_state = 71}, + [276] = {.lex_state = 71}, + [277] = {.lex_state = 71}, + [278] = {.lex_state = 71}, + [279] = {.lex_state = 71}, + [280] = {.lex_state = 71}, + [281] = {.lex_state = 71}, + [282] = {.lex_state = 71}, + [283] = {.lex_state = 71}, + [284] = {.lex_state = 71}, + [285] = {.lex_state = 71}, + [286] = {.lex_state = 71}, + [287] = {.lex_state = 71}, + [288] = {.lex_state = 71}, + [289] = {.lex_state = 71}, + [290] = {.lex_state = 71}, + [291] = {.lex_state = 71}, + [292] = {.lex_state = 71}, + [293] = {.lex_state = 71}, + [294] = {.lex_state = 71}, + [295] = {.lex_state = 71}, + [296] = {.lex_state = 71}, + [297] = {.lex_state = 71}, + [298] = {.lex_state = 71}, + [299] = {.lex_state = 71}, + [300] = {.lex_state = 71}, + [301] = {.lex_state = 71}, + [302] = {.lex_state = 71}, + [303] = {.lex_state = 71}, + [304] = {.lex_state = 71}, + [305] = {.lex_state = 71}, + [306] = {.lex_state = 71}, + [307] = {.lex_state = 71}, + [308] = {.lex_state = 71}, + [309] = {.lex_state = 71}, + [310] = {.lex_state = 71}, + [311] = {.lex_state = 71}, + [312] = {.lex_state = 71}, + [313] = {.lex_state = 71}, + [314] = {.lex_state = 71}, + [315] = {.lex_state = 71}, + [316] = {.lex_state = 71}, + [317] = {.lex_state = 71}, + [318] = {.lex_state = 71}, + [319] = {.lex_state = 71}, + [320] = {.lex_state = 71}, + [321] = {.lex_state = 71}, + [322] = {.lex_state = 71}, + [323] = {.lex_state = 71}, + [324] = {.lex_state = 71}, + [325] = {.lex_state = 71}, + [326] = {.lex_state = 71}, + [327] = {.lex_state = 71}, + [328] = {.lex_state = 71}, + [329] = {.lex_state = 71}, + [330] = {.lex_state = 71}, + [331] = {.lex_state = 71}, + [332] = {.lex_state = 71}, + [333] = {.lex_state = 71}, + [334] = {.lex_state = 71}, + [335] = {.lex_state = 71}, + [336] = {.lex_state = 71}, + [337] = {.lex_state = 71}, + [338] = {.lex_state = 71}, + [339] = {.lex_state = 71}, + [340] = {.lex_state = 71}, + [341] = {.lex_state = 71}, + [342] = {.lex_state = 71}, + [343] = {.lex_state = 71}, + [344] = {.lex_state = 71}, + [345] = {.lex_state = 71}, + [346] = {.lex_state = 71}, + [347] = {.lex_state = 71}, + [348] = {.lex_state = 71}, + [349] = {.lex_state = 71}, + [350] = {.lex_state = 71}, + [351] = {.lex_state = 71}, + [352] = {.lex_state = 71}, + [353] = {.lex_state = 71}, + [354] = {.lex_state = 71}, + [355] = {.lex_state = 71}, + [356] = {.lex_state = 71}, + [357] = {.lex_state = 71}, + [358] = {.lex_state = 71}, + [359] = {.lex_state = 71}, + [360] = {.lex_state = 71}, + [361] = {.lex_state = 71}, + [362] = {.lex_state = 71}, + [363] = {.lex_state = 71}, + [364] = {.lex_state = 71}, + [365] = {.lex_state = 71}, + [366] = {.lex_state = 71}, + [367] = {.lex_state = 71}, + [368] = {.lex_state = 71}, + [369] = {.lex_state = 71}, + [370] = {.lex_state = 71}, + [371] = {.lex_state = 71}, + [372] = {.lex_state = 71}, + [373] = {.lex_state = 71}, + [374] = {.lex_state = 71}, + [375] = {.lex_state = 71}, + [376] = {.lex_state = 71}, + [377] = {.lex_state = 71}, + [378] = {.lex_state = 71}, + [379] = {.lex_state = 71}, + [380] = {.lex_state = 71}, + [381] = {.lex_state = 71}, + [382] = {.lex_state = 71}, + [383] = {.lex_state = 71}, + [384] = {.lex_state = 71}, + [385] = {.lex_state = 71}, + [386] = {.lex_state = 71}, + [387] = {.lex_state = 71}, + [388] = {.lex_state = 71}, + [389] = {.lex_state = 71}, + [390] = {.lex_state = 71}, + [391] = {.lex_state = 71}, + [392] = {.lex_state = 71}, + [393] = {.lex_state = 71}, + [394] = {.lex_state = 71}, + [395] = {.lex_state = 71}, + [396] = {.lex_state = 71}, + [397] = {.lex_state = 71}, + [398] = {.lex_state = 71}, + [399] = {.lex_state = 71}, + [400] = {.lex_state = 71}, + [401] = {.lex_state = 71}, + [402] = {.lex_state = 71}, + [403] = {.lex_state = 71}, + [404] = {.lex_state = 71}, + [405] = {.lex_state = 71}, + [406] = {.lex_state = 71}, + [407] = {.lex_state = 71}, + [408] = {.lex_state = 71}, + [409] = {.lex_state = 71}, + [410] = {.lex_state = 71}, + [411] = {.lex_state = 71}, + [412] = {.lex_state = 71}, + [413] = {.lex_state = 71}, + [414] = {.lex_state = 71}, + [415] = {.lex_state = 71}, + [416] = {.lex_state = 71}, + [417] = {.lex_state = 71}, + [418] = {.lex_state = 71}, + [419] = {.lex_state = 71}, + [420] = {.lex_state = 71}, + [421] = {.lex_state = 71}, + [422] = {.lex_state = 71}, + [423] = {.lex_state = 71}, + [424] = {.lex_state = 71}, + [425] = {.lex_state = 71}, + [426] = {.lex_state = 71}, + [427] = {.lex_state = 71}, + [428] = {.lex_state = 71}, + [429] = {.lex_state = 71}, + [430] = {.lex_state = 71}, + [431] = {.lex_state = 71}, + [432] = {.lex_state = 71}, + [433] = {.lex_state = 71}, + [434] = {.lex_state = 71}, + [435] = {.lex_state = 71, .external_lex_state = 2}, + [436] = {.lex_state = 71, .external_lex_state = 2}, + [437] = {.lex_state = 71, .external_lex_state = 2}, + [438] = {.lex_state = 71, .external_lex_state = 2}, + [439] = {.lex_state = 71}, + [440] = {.lex_state = 71, .external_lex_state = 2}, + [441] = {.lex_state = 71, .external_lex_state = 2}, + [442] = {.lex_state = 71, .external_lex_state = 2}, + [443] = {.lex_state = 71, .external_lex_state = 2}, + [444] = {.lex_state = 71, .external_lex_state = 2}, + [445] = {.lex_state = 71, .external_lex_state = 2}, + [446] = {.lex_state = 71, .external_lex_state = 2}, + [447] = {.lex_state = 71, .external_lex_state = 2}, + [448] = {.lex_state = 71}, + [449] = {.lex_state = 71, .external_lex_state = 2}, + [450] = {.lex_state = 71, .external_lex_state = 2}, + [451] = {.lex_state = 71, .external_lex_state = 2}, + [452] = {.lex_state = 71, .external_lex_state = 2}, + [453] = {.lex_state = 71, .external_lex_state = 2}, + [454] = {.lex_state = 71, .external_lex_state = 2}, + [455] = {.lex_state = 71, .external_lex_state = 2}, + [456] = {.lex_state = 71}, + [457] = {.lex_state = 71}, + [458] = {.lex_state = 71, .external_lex_state = 2}, + [459] = {.lex_state = 71}, + [460] = {.lex_state = 71}, + [461] = {.lex_state = 71}, + [462] = {.lex_state = 71}, + [463] = {.lex_state = 71}, + [464] = {.lex_state = 71}, + [465] = {.lex_state = 71}, + [466] = {.lex_state = 71}, + [467] = {.lex_state = 71}, + [468] = {.lex_state = 71}, + [469] = {.lex_state = 71}, + [470] = {.lex_state = 71}, + [471] = {.lex_state = 71}, + [472] = {.lex_state = 71}, + [473] = {.lex_state = 71}, + [474] = {.lex_state = 71}, + [475] = {.lex_state = 71}, + [476] = {.lex_state = 71}, + [477] = {.lex_state = 71}, + [478] = {.lex_state = 71}, + [479] = {.lex_state = 71}, + [480] = {.lex_state = 71}, + [481] = {.lex_state = 71}, + [482] = {.lex_state = 71}, + [483] = {.lex_state = 71}, + [484] = {.lex_state = 71}, + [485] = {.lex_state = 71}, + [486] = {.lex_state = 71}, + [487] = {.lex_state = 71}, + [488] = {.lex_state = 71}, + [489] = {.lex_state = 71}, + [490] = {.lex_state = 71}, + [491] = {.lex_state = 71}, + [492] = {.lex_state = 71}, + [493] = {.lex_state = 71}, + [494] = {.lex_state = 71}, + [495] = {.lex_state = 71}, + [496] = {.lex_state = 71}, + [497] = {.lex_state = 71}, + [498] = {.lex_state = 71}, + [499] = {.lex_state = 71}, + [500] = {.lex_state = 71}, + [501] = {.lex_state = 71}, + [502] = {.lex_state = 71}, + [503] = {.lex_state = 71}, + [504] = {.lex_state = 71}, + [505] = {.lex_state = 71}, + [506] = {.lex_state = 71}, + [507] = {.lex_state = 71}, + [508] = {.lex_state = 71}, + [509] = {.lex_state = 71}, + [510] = {.lex_state = 71}, + [511] = {.lex_state = 71}, + [512] = {.lex_state = 71}, + [513] = {.lex_state = 71}, + [514] = {.lex_state = 71}, + [515] = {.lex_state = 71}, + [516] = {.lex_state = 71}, + [517] = {.lex_state = 71}, + [518] = {.lex_state = 71}, + [519] = {.lex_state = 71}, + [520] = {.lex_state = 71}, + [521] = {.lex_state = 71}, + [522] = {.lex_state = 71}, + [523] = {.lex_state = 71}, + [524] = {.lex_state = 71}, + [525] = {.lex_state = 71}, + [526] = {.lex_state = 71}, + [527] = {.lex_state = 71}, + [528] = {.lex_state = 71}, + [529] = {.lex_state = 71}, + [530] = {.lex_state = 71}, + [531] = {.lex_state = 71}, + [532] = {.lex_state = 71}, + [533] = {.lex_state = 71}, + [534] = {.lex_state = 71}, + [535] = {.lex_state = 71}, + [536] = {.lex_state = 71}, + [537] = {.lex_state = 71}, + [538] = {.lex_state = 71}, + [539] = {.lex_state = 71}, + [540] = {.lex_state = 71}, + [541] = {.lex_state = 71}, + [542] = {.lex_state = 71}, + [543] = {.lex_state = 71}, + [544] = {.lex_state = 71}, + [545] = {.lex_state = 71}, + [546] = {.lex_state = 71}, + [547] = {.lex_state = 71}, + [548] = {.lex_state = 71}, + [549] = {.lex_state = 71}, + [550] = {.lex_state = 71}, + [551] = {.lex_state = 71}, + [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 = 72}, + [569] = {.lex_state = 72}, + [570] = {.lex_state = 72}, + [571] = {.lex_state = 72}, + [572] = {.lex_state = 72}, + [573] = {.lex_state = 72}, + [574] = {.lex_state = 72}, + [575] = {.lex_state = 72}, + [576] = {.lex_state = 72}, + [577] = {.lex_state = 72}, + [578] = {.lex_state = 72}, + [579] = {.lex_state = 72}, + [580] = {.lex_state = 72}, + [581] = {.lex_state = 72}, + [582] = {.lex_state = 72}, + [583] = {.lex_state = 72}, + [584] = {.lex_state = 72}, + [585] = {.lex_state = 72}, + [586] = {.lex_state = 72}, + [587] = {.lex_state = 72}, + [588] = {.lex_state = 72}, + [589] = {.lex_state = 72}, + [590] = {.lex_state = 72}, + [591] = {.lex_state = 72}, + [592] = {.lex_state = 72}, + [593] = {.lex_state = 72}, + [594] = {.lex_state = 72}, + [595] = {.lex_state = 72}, + [596] = {.lex_state = 72}, + [597] = {.lex_state = 72, .external_lex_state = 2}, + [598] = {.lex_state = 72}, + [599] = {.lex_state = 72, .external_lex_state = 2}, + [600] = {.lex_state = 72, .external_lex_state = 2}, + [601] = {.lex_state = 72, .external_lex_state = 2}, + [602] = {.lex_state = 72, .external_lex_state = 2}, + [603] = {.lex_state = 72, .external_lex_state = 2}, + [604] = {.lex_state = 72, .external_lex_state = 2}, + [605] = {.lex_state = 72, .external_lex_state = 2}, + [606] = {.lex_state = 72}, + [607] = {.lex_state = 72}, + [608] = {.lex_state = 72}, + [609] = {.lex_state = 72}, + [610] = {.lex_state = 72, .external_lex_state = 2}, + [611] = {.lex_state = 72, .external_lex_state = 2}, + [612] = {.lex_state = 72, .external_lex_state = 2}, + [613] = {.lex_state = 72, .external_lex_state = 2}, + [614] = {.lex_state = 72, .external_lex_state = 2}, + [615] = {.lex_state = 72, .external_lex_state = 2}, + [616] = {.lex_state = 72, .external_lex_state = 2}, + [617] = {.lex_state = 72}, + [618] = {.lex_state = 72}, + [619] = {.lex_state = 72, .external_lex_state = 2}, + [620] = {.lex_state = 72, .external_lex_state = 2}, + [621] = {.lex_state = 72, .external_lex_state = 2}, + [622] = {.lex_state = 72, .external_lex_state = 2}, + [623] = {.lex_state = 72, .external_lex_state = 2}, + [624] = {.lex_state = 72, .external_lex_state = 2}, + [625] = {.lex_state = 72}, + [626] = {.lex_state = 72, .external_lex_state = 2}, + [627] = {.lex_state = 72, .external_lex_state = 2}, + [628] = {.lex_state = 72}, + [629] = {.lex_state = 72, .external_lex_state = 2}, + [630] = {.lex_state = 72}, + [631] = {.lex_state = 72, .external_lex_state = 2}, + [632] = {.lex_state = 72, .external_lex_state = 2}, + [633] = {.lex_state = 72, .external_lex_state = 2}, + [634] = {.lex_state = 72}, + [635] = {.lex_state = 72}, + [636] = {.lex_state = 72, .external_lex_state = 2}, + [637] = {.lex_state = 72}, + [638] = {.lex_state = 72}, + [639] = {.lex_state = 72}, + [640] = {.lex_state = 72}, + [641] = {.lex_state = 72}, + [642] = {.lex_state = 72}, + [643] = {.lex_state = 72}, + [644] = {.lex_state = 10}, + [645] = {.lex_state = 9}, + [646] = {.lex_state = 9}, + [647] = {.lex_state = 10}, + [648] = {.lex_state = 9}, + [649] = {.lex_state = 10}, + [650] = {.lex_state = 10}, + [651] = {.lex_state = 10}, + [652] = {.lex_state = 10}, + [653] = {.lex_state = 10}, + [654] = {.lex_state = 21}, + [655] = {.lex_state = 21}, + [656] = {.lex_state = 9}, + [657] = {.lex_state = 9}, + [658] = {.lex_state = 10}, + [659] = {.lex_state = 10}, + [660] = {.lex_state = 10}, + [661] = {.lex_state = 15}, + [662] = {.lex_state = 10}, + [663] = {.lex_state = 9}, + [664] = {.lex_state = 15}, + [665] = {.lex_state = 10}, + [666] = {.lex_state = 10}, + [667] = {.lex_state = 10}, + [668] = {.lex_state = 10}, + [669] = {.lex_state = 10}, + [670] = {.lex_state = 10}, + [671] = {.lex_state = 10}, + [672] = {.lex_state = 10}, + [673] = {.lex_state = 10}, + [674] = {.lex_state = 9}, + [675] = {.lex_state = 10}, + [676] = {.lex_state = 10}, + [677] = {.lex_state = 10}, + [678] = {.lex_state = 10}, + [679] = {.lex_state = 9}, + [680] = {.lex_state = 9}, + [681] = {.lex_state = 9}, + [682] = {.lex_state = 9}, + [683] = {.lex_state = 9}, + [684] = {.lex_state = 9}, + [685] = {.lex_state = 9}, + [686] = {.lex_state = 16}, + [687] = {.lex_state = 9}, + [688] = {.lex_state = 16}, + [689] = {.lex_state = 9}, + [690] = {.lex_state = 19}, + [691] = {.lex_state = 16}, + [692] = {.lex_state = 10}, + [693] = {.lex_state = 16}, + [694] = {.lex_state = 9}, + [695] = {.lex_state = 9}, + [696] = {.lex_state = 9}, + [697] = {.lex_state = 9}, + [698] = {.lex_state = 9}, + [699] = {.lex_state = 19}, + [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 = 10}, + [710] = {.lex_state = 9}, + [711] = {.lex_state = 9}, + [712] = {.lex_state = 9}, + [713] = {.lex_state = 16}, + [714] = {.lex_state = 9}, + [715] = {.lex_state = 9}, + [716] = {.lex_state = 9}, + [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 = 16}, + [728] = {.lex_state = 9}, + [729] = {.lex_state = 19}, + [730] = {.lex_state = 9}, + [731] = {.lex_state = 9}, + [732] = {.lex_state = 9}, + [733] = {.lex_state = 19}, + [734] = {.lex_state = 9}, + [735] = {.lex_state = 9}, + [736] = {.lex_state = 9}, + [737] = {.lex_state = 9}, + [738] = {.lex_state = 9}, + [739] = {.lex_state = 9}, + [740] = {.lex_state = 19}, + [741] = {.lex_state = 9}, + [742] = {.lex_state = 9}, + [743] = {.lex_state = 9}, + [744] = {.lex_state = 9}, + [745] = {.lex_state = 9}, + [746] = {.lex_state = 9}, + [747] = {.lex_state = 9}, + [748] = {.lex_state = 9}, + [749] = {.lex_state = 9}, + [750] = {.lex_state = 9}, + [751] = {.lex_state = 9}, + [752] = {.lex_state = 9}, + [753] = {.lex_state = 9}, + [754] = {.lex_state = 9}, + [755] = {.lex_state = 9}, + [756] = {.lex_state = 9}, + [757] = {.lex_state = 9}, + [758] = {.lex_state = 9}, + [759] = {.lex_state = 9}, + [760] = {.lex_state = 19}, + [761] = {.lex_state = 9}, + [762] = {.lex_state = 9}, + [763] = {.lex_state = 13}, + [764] = {.lex_state = 10, .external_lex_state = 2}, + [765] = {.lex_state = 13}, + [766] = {.lex_state = 9}, + [767] = {.lex_state = 10, .external_lex_state = 2}, + [768] = {.lex_state = 10, .external_lex_state = 2}, + [769] = {.lex_state = 19}, + [770] = {.lex_state = 10, .external_lex_state = 2}, + [771] = {.lex_state = 10, .external_lex_state = 2}, + [772] = {.lex_state = 9}, + [773] = {.lex_state = 9}, + [774] = {.lex_state = 9, .external_lex_state = 2}, + [775] = {.lex_state = 10, .external_lex_state = 2}, + [776] = {.lex_state = 9}, + [777] = {.lex_state = 10, .external_lex_state = 2}, + [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 = 9}, + [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 = 10, .external_lex_state = 2}, + [789] = {.lex_state = 10, .external_lex_state = 2}, + [790] = {.lex_state = 10, .external_lex_state = 2}, + [791] = {.lex_state = 10, .external_lex_state = 2}, + [792] = {.lex_state = 10, .external_lex_state = 2}, + [793] = {.lex_state = 10, .external_lex_state = 2}, + [794] = {.lex_state = 10, .external_lex_state = 2}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 9, .external_lex_state = 2}, + [797] = {.lex_state = 10, .external_lex_state = 2}, + [798] = {.lex_state = 10, .external_lex_state = 2}, + [799] = {.lex_state = 10, .external_lex_state = 2}, + [800] = {.lex_state = 9}, + [801] = {.lex_state = 7}, + [802] = {.lex_state = 10, .external_lex_state = 2}, + [803] = {.lex_state = 9, .external_lex_state = 2}, + [804] = {.lex_state = 16}, + [805] = {.lex_state = 16}, + [806] = {.lex_state = 9, .external_lex_state = 2}, + [807] = {.lex_state = 16}, + [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 = 9, .external_lex_state = 2}, + [814] = {.lex_state = 9, .external_lex_state = 2}, + [815] = {.lex_state = 16}, + [816] = {.lex_state = 16}, + [817] = {.lex_state = 9, .external_lex_state = 2}, + [818] = {.lex_state = 9, .external_lex_state = 2}, + [819] = {.lex_state = 9, .external_lex_state = 2}, + [820] = {.lex_state = 16}, + [821] = {.lex_state = 9, .external_lex_state = 2}, + [822] = {.lex_state = 9, .external_lex_state = 2}, + [823] = {.lex_state = 13}, + [824] = {.lex_state = 9, .external_lex_state = 2}, + [825] = {.lex_state = 16}, + [826] = {.lex_state = 9, .external_lex_state = 2}, + [827] = {.lex_state = 16}, + [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 = 9, .external_lex_state = 2}, + [832] = {.lex_state = 16}, + [833] = {.lex_state = 9, .external_lex_state = 2}, + [834] = {.lex_state = 16}, + [835] = {.lex_state = 10, .external_lex_state = 2}, + [836] = {.lex_state = 16}, + [837] = {.lex_state = 9, .external_lex_state = 2}, + [838] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 13}, + [843] = {.lex_state = 9, .external_lex_state = 2}, + [844] = {.lex_state = 16}, + [845] = {.lex_state = 9, .external_lex_state = 2}, + [846] = {.lex_state = 9, .external_lex_state = 2}, + [847] = {.lex_state = 16}, + [848] = {.lex_state = 10, .external_lex_state = 2}, + [849] = {.lex_state = 9, .external_lex_state = 2}, + [850] = {.lex_state = 9, .external_lex_state = 2}, + [851] = {.lex_state = 16}, + [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}, + [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}, + [888] = {.lex_state = 9, .external_lex_state = 2}, + [889] = {.lex_state = 9, .external_lex_state = 2}, + [890] = {.lex_state = 9, .external_lex_state = 2}, + [891] = {.lex_state = 9, .external_lex_state = 2}, + [892] = {.lex_state = 9, .external_lex_state = 2}, + [893] = {.lex_state = 9, .external_lex_state = 2}, + [894] = {.lex_state = 9, .external_lex_state = 2}, + [895] = {.lex_state = 9, .external_lex_state = 2}, + [896] = {.lex_state = 9, .external_lex_state = 2}, + [897] = {.lex_state = 9, .external_lex_state = 2}, + [898] = {.lex_state = 9, .external_lex_state = 2}, + [899] = {.lex_state = 9, .external_lex_state = 2}, + [900] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [954] = {.lex_state = 13}, + [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, .external_lex_state = 2}, + [966] = {.lex_state = 13, .external_lex_state = 2}, + [967] = {.lex_state = 13}, + [968] = {.lex_state = 22}, + [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}, + [1022] = {.lex_state = 13}, + [1023] = {.lex_state = 13}, + [1024] = {.lex_state = 13}, + [1025] = {.lex_state = 13}, + [1026] = {.lex_state = 13}, + [1027] = {.lex_state = 13}, + [1028] = {.lex_state = 13}, + [1029] = {.lex_state = 13}, + [1030] = {.lex_state = 13}, + [1031] = {.lex_state = 13}, + [1032] = {.lex_state = 13}, + [1033] = {.lex_state = 13}, + [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 = 21}, + [1070] = {.lex_state = 13, .external_lex_state = 2}, + [1071] = {.lex_state = 13, .external_lex_state = 2}, + [1072] = {.lex_state = 13, .external_lex_state = 2}, + [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, .external_lex_state = 2}, + [1123] = {.lex_state = 13, .external_lex_state = 2}, + [1124] = {.lex_state = 13, .external_lex_state = 2}, + [1125] = {.lex_state = 13, .external_lex_state = 2}, + [1126] = {.lex_state = 13, .external_lex_state = 2}, + [1127] = {.lex_state = 13, .external_lex_state = 2}, + [1128] = {.lex_state = 13, .external_lex_state = 2}, + [1129] = {.lex_state = 13, .external_lex_state = 2}, + [1130] = {.lex_state = 13, .external_lex_state = 2}, + [1131] = {.lex_state = 13, .external_lex_state = 2}, + [1132] = {.lex_state = 13, .external_lex_state = 2}, + [1133] = {.lex_state = 13, .external_lex_state = 2}, + [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 = 13}, + [1156] = {.lex_state = 13}, + [1157] = {.lex_state = 13}, + [1158] = {.lex_state = 13}, + [1159] = {.lex_state = 13}, + [1160] = {.lex_state = 13}, + [1161] = {.lex_state = 13}, + [1162] = {.lex_state = 13}, + [1163] = {.lex_state = 13}, + [1164] = {.lex_state = 13}, + [1165] = {.lex_state = 13}, + [1166] = {.lex_state = 13}, + [1167] = {.lex_state = 20}, + [1168] = {.lex_state = 20}, + [1169] = {.lex_state = 13, .external_lex_state = 2}, + [1170] = {.lex_state = 20}, + [1171] = {.lex_state = 13}, + [1172] = {.lex_state = 13}, + [1173] = {.lex_state = 20}, + [1174] = {.lex_state = 13, .external_lex_state = 2}, + [1175] = {.lex_state = 13, .external_lex_state = 2}, + [1176] = {.lex_state = 20}, + [1177] = {.lex_state = 13}, + [1178] = {.lex_state = 13}, + [1179] = {.lex_state = 13, .external_lex_state = 2}, + [1180] = {.lex_state = 13}, + [1181] = {.lex_state = 13, .external_lex_state = 2}, + [1182] = {.lex_state = 20}, + [1183] = {.lex_state = 20}, + [1184] = {.lex_state = 13}, + [1185] = {.lex_state = 20}, + [1186] = {.lex_state = 20}, + [1187] = {.lex_state = 13}, + [1188] = {.lex_state = 13}, + [1189] = {.lex_state = 13}, + [1190] = {.lex_state = 21}, + [1191] = {.lex_state = 21}, + [1192] = {.lex_state = 13}, + [1193] = {.lex_state = 13}, + [1194] = {.lex_state = 13}, + [1195] = {.lex_state = 13}, + [1196] = {.lex_state = 13}, + [1197] = {.lex_state = 13}, + [1198] = {.lex_state = 13}, + [1199] = {.lex_state = 13}, + [1200] = {.lex_state = 13}, + [1201] = {.lex_state = 13}, + [1202] = {.lex_state = 13, .external_lex_state = 2}, + [1203] = {.lex_state = 13, .external_lex_state = 2}, + [1204] = {.lex_state = 13}, + [1205] = {.lex_state = 13, .external_lex_state = 2}, + [1206] = {.lex_state = 13}, + [1207] = {.lex_state = 13, .external_lex_state = 2}, + [1208] = {.lex_state = 13}, + [1209] = {.lex_state = 13}, + [1210] = {.lex_state = 13}, + [1211] = {.lex_state = 13}, + [1212] = {.lex_state = 13}, + [1213] = {.lex_state = 13, .external_lex_state = 2}, + [1214] = {.lex_state = 13, .external_lex_state = 2}, + [1215] = {.lex_state = 13, .external_lex_state = 2}, + [1216] = {.lex_state = 13, .external_lex_state = 2}, + [1217] = {.lex_state = 13}, + [1218] = {.lex_state = 13}, + [1219] = {.lex_state = 13}, + [1220] = {.lex_state = 13}, + [1221] = {.lex_state = 13}, + [1222] = {.lex_state = 13}, + [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 = 20}, + [1241] = {.lex_state = 13}, + [1242] = {.lex_state = 13}, + [1243] = {.lex_state = 13}, + [1244] = {.lex_state = 13}, + [1245] = {.lex_state = 20}, + [1246] = {.lex_state = 20}, + [1247] = {.lex_state = 13}, + [1248] = {.lex_state = 13}, + [1249] = {.lex_state = 13}, + [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 = 21}, + [1257] = {.lex_state = 20}, + [1258] = {.lex_state = 13}, + [1259] = {.lex_state = 13}, + [1260] = {.lex_state = 13}, + [1261] = {.lex_state = 13}, + [1262] = {.lex_state = 13}, + [1263] = {.lex_state = 13}, + [1264] = {.lex_state = 13}, + [1265] = {.lex_state = 13}, + [1266] = {.lex_state = 13}, + [1267] = {.lex_state = 13}, + [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 = 13}, + [1286] = {.lex_state = 13}, + [1287] = {.lex_state = 13}, + [1288] = {.lex_state = 13}, + [1289] = {.lex_state = 13}, + [1290] = {.lex_state = 13}, + [1291] = {.lex_state = 13}, + [1292] = {.lex_state = 13}, + [1293] = {.lex_state = 13}, + [1294] = {.lex_state = 13}, + [1295] = {.lex_state = 20}, + [1296] = {.lex_state = 13}, + [1297] = {.lex_state = 13}, + [1298] = {.lex_state = 13}, + [1299] = {.lex_state = 13}, + [1300] = {.lex_state = 13}, + [1301] = {.lex_state = 13}, + [1302] = {.lex_state = 13}, + [1303] = {.lex_state = 21}, + [1304] = {.lex_state = 21}, + [1305] = {.lex_state = 21}, + [1306] = {.lex_state = 13}, + [1307] = {.lex_state = 21}, + [1308] = {.lex_state = 21}, + [1309] = {.lex_state = 19}, + [1310] = {.lex_state = 19}, + [1311] = {.lex_state = 19}, + [1312] = {.lex_state = 19}, + [1313] = {.lex_state = 13}, + [1314] = {.lex_state = 19}, + [1315] = {.lex_state = 13}, + [1316] = {.lex_state = 13}, + [1317] = {.lex_state = 13}, + [1318] = {.lex_state = 13}, + [1319] = {.lex_state = 13}, + [1320] = {.lex_state = 72}, + [1321] = {.lex_state = 72}, + [1322] = {.lex_state = 72}, + [1323] = {.lex_state = 13}, + [1324] = {.lex_state = 13}, + [1325] = {.lex_state = 21}, + [1326] = {.lex_state = 21}, + [1327] = {.lex_state = 3, .external_lex_state = 3}, + [1328] = {.lex_state = 3, .external_lex_state = 3}, + [1329] = {.lex_state = 20}, + [1330] = {.lex_state = 3, .external_lex_state = 3}, + [1331] = {.lex_state = 3, .external_lex_state = 4}, + [1332] = {.lex_state = 21}, + [1333] = {.lex_state = 3, .external_lex_state = 3}, + [1334] = {.lex_state = 3, .external_lex_state = 3}, + [1335] = {.lex_state = 20}, + [1336] = {.lex_state = 21}, + [1337] = {.lex_state = 21}, + [1338] = {.lex_state = 16}, + [1339] = {.lex_state = 20}, + [1340] = {.lex_state = 20}, + [1341] = {.lex_state = 20}, + [1342] = {.lex_state = 17, .external_lex_state = 4}, + [1343] = {.lex_state = 20}, + [1344] = {.lex_state = 20}, + [1345] = {.lex_state = 20}, + [1346] = {.lex_state = 20}, + [1347] = {.lex_state = 10, .external_lex_state = 5}, + [1348] = {.lex_state = 20}, + [1349] = {.lex_state = 10, .external_lex_state = 5}, + [1350] = {.lex_state = 20}, + [1351] = {.lex_state = 20}, + [1352] = {.lex_state = 10, .external_lex_state = 5}, + [1353] = {.lex_state = 20}, + [1354] = {.lex_state = 20}, + [1355] = {.lex_state = 20}, + [1356] = {.lex_state = 20}, + [1357] = {.lex_state = 20}, + [1358] = {.lex_state = 20}, + [1359] = {.lex_state = 20}, + [1360] = {.lex_state = 20}, + [1361] = {.lex_state = 20}, + [1362] = {.lex_state = 10, .external_lex_state = 5}, + [1363] = {.lex_state = 17}, + [1364] = {.lex_state = 20}, + [1365] = {.lex_state = 10, .external_lex_state = 5}, + [1366] = {.lex_state = 20}, + [1367] = {.lex_state = 21}, + [1368] = {.lex_state = 21}, + [1369] = {.lex_state = 20}, + [1370] = {.lex_state = 20}, + [1371] = {.lex_state = 10, .external_lex_state = 6}, + [1372] = {.lex_state = 20}, + [1373] = {.lex_state = 20}, + [1374] = {.lex_state = 20}, + [1375] = {.lex_state = 3, .external_lex_state = 7}, + [1376] = {.lex_state = 21}, + [1377] = {.lex_state = 20}, + [1378] = {.lex_state = 20}, + [1379] = {.lex_state = 20}, + [1380] = {.lex_state = 20}, + [1381] = {.lex_state = 20}, + [1382] = {.lex_state = 20}, + [1383] = {.lex_state = 10, .external_lex_state = 6}, + [1384] = {.lex_state = 10, .external_lex_state = 6}, + [1385] = {.lex_state = 21}, + [1386] = {.lex_state = 20}, + [1387] = {.lex_state = 20}, + [1388] = {.lex_state = 10, .external_lex_state = 6}, + [1389] = {.lex_state = 20}, + [1390] = {.lex_state = 20}, + [1391] = {.lex_state = 20}, + [1392] = {.lex_state = 20}, + [1393] = {.lex_state = 10, .external_lex_state = 6}, + [1394] = {.lex_state = 20}, + [1395] = {.lex_state = 20}, + [1396] = {.lex_state = 3, .external_lex_state = 7}, + [1397] = {.lex_state = 20}, + [1398] = {.lex_state = 21}, + [1399] = {.lex_state = 21}, + [1400] = {.lex_state = 21}, + [1401] = {.lex_state = 21}, + [1402] = {.lex_state = 21}, + [1403] = {.lex_state = 72}, + [1404] = {.lex_state = 21}, + [1405] = {.lex_state = 21}, + [1406] = {.lex_state = 21}, + [1407] = {.lex_state = 21}, + [1408] = {.lex_state = 21}, + [1409] = {.lex_state = 72}, + [1410] = {.lex_state = 72}, + [1411] = {.lex_state = 3, .external_lex_state = 3}, + [1412] = {.lex_state = 72}, + [1413] = {.lex_state = 21}, + [1414] = {.lex_state = 3, .external_lex_state = 3}, + [1415] = {.lex_state = 3, .external_lex_state = 3}, + [1416] = {.lex_state = 21}, + [1417] = {.lex_state = 3, .external_lex_state = 3}, + [1418] = {.lex_state = 3, .external_lex_state = 3}, + [1419] = {.lex_state = 3, .external_lex_state = 3}, + [1420] = {.lex_state = 10, .external_lex_state = 8}, + [1421] = {.lex_state = 72}, + [1422] = {.lex_state = 72}, + [1423] = {.lex_state = 3, .external_lex_state = 3}, + [1424] = {.lex_state = 21}, + [1425] = {.lex_state = 72}, + [1426] = {.lex_state = 3, .external_lex_state = 3}, + [1427] = {.lex_state = 72}, + [1428] = {.lex_state = 72}, + [1429] = {.lex_state = 10, .external_lex_state = 8}, + [1430] = {.lex_state = 21}, + [1431] = {.lex_state = 21}, + [1432] = {.lex_state = 3, .external_lex_state = 3}, + [1433] = {.lex_state = 72}, + [1434] = {.lex_state = 72}, + [1435] = {.lex_state = 21}, + [1436] = {.lex_state = 72}, + [1437] = {.lex_state = 21}, + [1438] = {.lex_state = 72}, + [1439] = {.lex_state = 21}, + [1440] = {.lex_state = 21}, + [1441] = {.lex_state = 72}, + [1442] = {.lex_state = 72}, + [1443] = {.lex_state = 21}, + [1444] = {.lex_state = 21}, + [1445] = {.lex_state = 21}, + [1446] = {.lex_state = 21}, + [1447] = {.lex_state = 21}, + [1448] = {.lex_state = 21}, + [1449] = {.lex_state = 21}, + [1450] = {.lex_state = 21}, + [1451] = {.lex_state = 72}, + [1452] = {.lex_state = 21}, + [1453] = {.lex_state = 21}, + [1454] = {.lex_state = 21}, + [1455] = {.lex_state = 21}, + [1456] = {.lex_state = 21}, + [1457] = {.lex_state = 72}, + [1458] = {.lex_state = 72}, + [1459] = {.lex_state = 21}, + [1460] = {.lex_state = 21}, + [1461] = {.lex_state = 10, .external_lex_state = 9}, + [1462] = {.lex_state = 21}, + [1463] = {.lex_state = 72}, + [1464] = {.lex_state = 21}, + [1465] = {.lex_state = 21}, + [1466] = {.lex_state = 10, .external_lex_state = 9}, + [1467] = {.lex_state = 21}, + [1468] = {.lex_state = 72}, + [1469] = {.lex_state = 21}, + [1470] = {.lex_state = 21}, + [1471] = {.lex_state = 21}, + [1472] = {.lex_state = 21}, + [1473] = {.lex_state = 21}, + [1474] = {.lex_state = 21}, + [1475] = {.lex_state = 21}, + [1476] = {.lex_state = 21}, + [1477] = {.lex_state = 21}, + [1478] = {.lex_state = 21}, + [1479] = {.lex_state = 21}, + [1480] = {.lex_state = 21}, + [1481] = {.lex_state = 21}, + [1482] = {.lex_state = 21}, + [1483] = {.lex_state = 21}, + [1484] = {.lex_state = 21}, + [1485] = {.lex_state = 21}, + [1486] = {.lex_state = 21}, + [1487] = {.lex_state = 72}, + [1488] = {.lex_state = 21}, + [1489] = {.lex_state = 21}, + [1490] = {.lex_state = 72}, + [1491] = {.lex_state = 72, .external_lex_state = 2}, + [1492] = {.lex_state = 72}, + [1493] = {.lex_state = 72}, + [1494] = {.lex_state = 72}, + [1495] = {.lex_state = 72}, + [1496] = {.lex_state = 72}, + [1497] = {.lex_state = 72}, + [1498] = {.lex_state = 72}, + [1499] = {.lex_state = 72}, + [1500] = {.lex_state = 72}, + [1501] = {.lex_state = 72}, + [1502] = {.lex_state = 72}, + [1503] = {.lex_state = 72}, + [1504] = {.lex_state = 10, .external_lex_state = 5}, + [1505] = {.lex_state = 72}, + [1506] = {.lex_state = 72}, + [1507] = {.lex_state = 72, .external_lex_state = 2}, + [1508] = {.lex_state = 21}, + [1509] = {.lex_state = 21}, + [1510] = {.lex_state = 72}, + [1511] = {.lex_state = 72}, + [1512] = {.lex_state = 72}, + [1513] = {.lex_state = 72, .external_lex_state = 2}, + [1514] = {.lex_state = 21}, + [1515] = {.lex_state = 72}, + [1516] = {.lex_state = 10, .external_lex_state = 5}, + [1517] = {.lex_state = 72}, + [1518] = {.lex_state = 10, .external_lex_state = 5}, + [1519] = {.lex_state = 72}, + [1520] = {.lex_state = 10, .external_lex_state = 5}, + [1521] = {.lex_state = 72}, + [1522] = {.lex_state = 72}, + [1523] = {.lex_state = 72}, + [1524] = {.lex_state = 10, .external_lex_state = 5}, + [1525] = {.lex_state = 72}, + [1526] = {.lex_state = 72}, + [1527] = {.lex_state = 21}, + [1528] = {.lex_state = 72}, + [1529] = {.lex_state = 72}, + [1530] = {.lex_state = 9}, + [1531] = {.lex_state = 10, .external_lex_state = 5}, + [1532] = {.lex_state = 72}, + [1533] = {.lex_state = 72}, + [1534] = {.lex_state = 21}, + [1535] = {.lex_state = 72}, + [1536] = {.lex_state = 9}, + [1537] = {.lex_state = 72}, + [1538] = {.lex_state = 9}, + [1539] = {.lex_state = 10, .external_lex_state = 5}, + [1540] = {.lex_state = 72, .external_lex_state = 2}, + [1541] = {.lex_state = 72}, + [1542] = {.lex_state = 72}, + [1543] = {.lex_state = 10, .external_lex_state = 5}, + [1544] = {.lex_state = 10, .external_lex_state = 5}, + [1545] = {.lex_state = 72}, + [1546] = {.lex_state = 72}, + [1547] = {.lex_state = 72}, + [1548] = {.lex_state = 21}, + [1549] = {.lex_state = 21}, + [1550] = {.lex_state = 72}, + [1551] = {.lex_state = 10, .external_lex_state = 6}, + [1552] = {.lex_state = 72}, + [1553] = {.lex_state = 21}, + [1554] = {.lex_state = 72}, + [1555] = {.lex_state = 72}, + [1556] = {.lex_state = 21}, + [1557] = {.lex_state = 72}, + [1558] = {.lex_state = 72}, + [1559] = {.lex_state = 72}, + [1560] = {.lex_state = 72}, + [1561] = {.lex_state = 72}, + [1562] = {.lex_state = 72}, + [1563] = {.lex_state = 72}, + [1564] = {.lex_state = 72}, + [1565] = {.lex_state = 72}, + [1566] = {.lex_state = 21}, + [1567] = {.lex_state = 10, .external_lex_state = 6}, + [1568] = {.lex_state = 21}, + [1569] = {.lex_state = 10, .external_lex_state = 6}, + [1570] = {.lex_state = 10, .external_lex_state = 6}, + [1571] = {.lex_state = 72}, + [1572] = {.lex_state = 21}, + [1573] = {.lex_state = 72}, + [1574] = {.lex_state = 72}, + [1575] = {.lex_state = 10, .external_lex_state = 6}, + [1576] = {.lex_state = 72}, + [1577] = {.lex_state = 10, .external_lex_state = 6}, + [1578] = {.lex_state = 72}, + [1579] = {.lex_state = 72}, + [1580] = {.lex_state = 72}, + [1581] = {.lex_state = 72}, + [1582] = {.lex_state = 72}, + [1583] = {.lex_state = 72}, + [1584] = {.lex_state = 72}, + [1585] = {.lex_state = 72}, + [1586] = {.lex_state = 72}, + [1587] = {.lex_state = 72}, + [1588] = {.lex_state = 72}, + [1589] = {.lex_state = 72}, + [1590] = {.lex_state = 72}, + [1591] = {.lex_state = 10, .external_lex_state = 6}, + [1592] = {.lex_state = 21}, + [1593] = {.lex_state = 72}, + [1594] = {.lex_state = 21}, + [1595] = {.lex_state = 72}, + [1596] = {.lex_state = 72}, + [1597] = {.lex_state = 72, .external_lex_state = 2}, + [1598] = {.lex_state = 72}, + [1599] = {.lex_state = 72, .external_lex_state = 2}, + [1600] = {.lex_state = 72}, + [1601] = {.lex_state = 72}, + [1602] = {.lex_state = 72}, + [1603] = {.lex_state = 72, .external_lex_state = 2}, + [1604] = {.lex_state = 72}, + [1605] = {.lex_state = 72}, + [1606] = {.lex_state = 21}, + [1607] = {.lex_state = 72}, + [1608] = {.lex_state = 72}, + [1609] = {.lex_state = 72}, + [1610] = {.lex_state = 72}, + [1611] = {.lex_state = 72}, + [1612] = {.lex_state = 72}, + [1613] = {.lex_state = 72}, + [1614] = {.lex_state = 21}, + [1615] = {.lex_state = 72}, + [1616] = {.lex_state = 10, .external_lex_state = 6}, + [1617] = {.lex_state = 72}, + [1618] = {.lex_state = 72, .external_lex_state = 2}, + [1619] = {.lex_state = 72}, + [1620] = {.lex_state = 72, .external_lex_state = 2}, + [1621] = {.lex_state = 72}, + [1622] = {.lex_state = 72, .external_lex_state = 2}, + [1623] = {.lex_state = 72}, + [1624] = {.lex_state = 72, .external_lex_state = 2}, + [1625] = {.lex_state = 72, .external_lex_state = 2}, + [1626] = {.lex_state = 21}, + [1627] = {.lex_state = 72, .external_lex_state = 2}, + [1628] = {.lex_state = 21}, + [1629] = {.lex_state = 21}, + [1630] = {.lex_state = 72, .external_lex_state = 2}, + [1631] = {.lex_state = 72, .external_lex_state = 2}, + [1632] = {.lex_state = 72}, + [1633] = {.lex_state = 72}, + [1634] = {.lex_state = 72, .external_lex_state = 2}, + [1635] = {.lex_state = 72}, + [1636] = {.lex_state = 72, .external_lex_state = 2}, + [1637] = {.lex_state = 72, .external_lex_state = 2}, + [1638] = {.lex_state = 72}, + [1639] = {.lex_state = 72}, + [1640] = {.lex_state = 72}, + [1641] = {.lex_state = 72}, + [1642] = {.lex_state = 72}, + [1643] = {.lex_state = 72}, + [1644] = {.lex_state = 72, .external_lex_state = 2}, + [1645] = {.lex_state = 21}, + [1646] = {.lex_state = 72}, + [1647] = {.lex_state = 72, .external_lex_state = 2}, + [1648] = {.lex_state = 72}, + [1649] = {.lex_state = 72, .external_lex_state = 2}, + [1650] = {.lex_state = 72}, + [1651] = {.lex_state = 72, .external_lex_state = 2}, + [1652] = {.lex_state = 72}, + [1653] = {.lex_state = 72}, + [1654] = {.lex_state = 72}, + [1655] = {.lex_state = 72, .external_lex_state = 2}, + [1656] = {.lex_state = 21}, + [1657] = {.lex_state = 72, .external_lex_state = 2}, + [1658] = {.lex_state = 72}, + [1659] = {.lex_state = 72}, + [1660] = {.lex_state = 72}, + [1661] = {.lex_state = 72, .external_lex_state = 2}, + [1662] = {.lex_state = 72}, + [1663] = {.lex_state = 72}, + [1664] = {.lex_state = 72}, + [1665] = {.lex_state = 72, .external_lex_state = 2}, + [1666] = {.lex_state = 72, .external_lex_state = 2}, + [1667] = {.lex_state = 72}, + [1668] = {.lex_state = 72, .external_lex_state = 2}, + [1669] = {.lex_state = 21}, + [1670] = {.lex_state = 72, .external_lex_state = 2}, + [1671] = {.lex_state = 21}, + [1672] = {.lex_state = 72}, + [1673] = {.lex_state = 72}, + [1674] = {.lex_state = 72}, + [1675] = {.lex_state = 72}, + [1676] = {.lex_state = 72, .external_lex_state = 2}, + [1677] = {.lex_state = 72}, + [1678] = {.lex_state = 72, .external_lex_state = 2}, + [1679] = {.lex_state = 72}, + [1680] = {.lex_state = 72}, + [1681] = {.lex_state = 72, .external_lex_state = 2}, + [1682] = {.lex_state = 72}, + [1683] = {.lex_state = 72, .external_lex_state = 2}, + [1684] = {.lex_state = 72}, + [1685] = {.lex_state = 72}, + [1686] = {.lex_state = 72}, + [1687] = {.lex_state = 72}, + [1688] = {.lex_state = 72, .external_lex_state = 2}, + [1689] = {.lex_state = 72, .external_lex_state = 2}, + [1690] = {.lex_state = 72, .external_lex_state = 2}, + [1691] = {.lex_state = 72, .external_lex_state = 2}, + [1692] = {.lex_state = 72, .external_lex_state = 2}, + [1693] = {.lex_state = 72}, + [1694] = {.lex_state = 72}, + [1695] = {.lex_state = 72}, + [1696] = {.lex_state = 72}, + [1697] = {.lex_state = 72, .external_lex_state = 2}, + [1698] = {.lex_state = 72}, + [1699] = {.lex_state = 72, .external_lex_state = 2}, + [1700] = {.lex_state = 72, .external_lex_state = 2}, + [1701] = {.lex_state = 72}, + [1702] = {.lex_state = 72}, + [1703] = {.lex_state = 72, .external_lex_state = 2}, + [1704] = {.lex_state = 72}, + [1705] = {.lex_state = 72}, + [1706] = {.lex_state = 72}, + [1707] = {.lex_state = 72}, + [1708] = {.lex_state = 72}, + [1709] = {.lex_state = 72}, + [1710] = {.lex_state = 72}, + [1711] = {.lex_state = 72}, + [1712] = {.lex_state = 72, .external_lex_state = 2}, + [1713] = {.lex_state = 72}, + [1714] = {.lex_state = 72}, + [1715] = {.lex_state = 72}, + [1716] = {.lex_state = 72}, + [1717] = {.lex_state = 72}, + [1718] = {.lex_state = 72}, + [1719] = {.lex_state = 16}, + [1720] = {.lex_state = 72}, + [1721] = {.lex_state = 72}, + [1722] = {.lex_state = 5, .external_lex_state = 10}, + [1723] = {.lex_state = 21}, + [1724] = {.lex_state = 72}, + [1725] = {.lex_state = 72}, + [1726] = {.lex_state = 72}, + [1727] = {.lex_state = 72}, + [1728] = {.lex_state = 72}, + [1729] = {.lex_state = 72}, + [1730] = {.lex_state = 72}, + [1731] = {.lex_state = 72}, + [1732] = {.lex_state = 72}, + [1733] = {.lex_state = 72}, + [1734] = {.lex_state = 72}, + [1735] = {.lex_state = 72}, + [1736] = {.lex_state = 72}, + [1737] = {.lex_state = 72, .external_lex_state = 2}, + [1738] = {.lex_state = 72}, + [1739] = {.lex_state = 72}, + [1740] = {.lex_state = 72}, + [1741] = {.lex_state = 72}, + [1742] = {.lex_state = 72}, + [1743] = {.lex_state = 72, .external_lex_state = 2}, + [1744] = {.lex_state = 72}, + [1745] = {.lex_state = 72}, + [1746] = {.lex_state = 72}, + [1747] = {.lex_state = 72}, + [1748] = {.lex_state = 21}, + [1749] = {.lex_state = 72}, + [1750] = {.lex_state = 72}, + [1751] = {.lex_state = 72}, + [1752] = {.lex_state = 72}, + [1753] = {.lex_state = 72}, + [1754] = {.lex_state = 72}, + [1755] = {.lex_state = 72}, + [1756] = {.lex_state = 72, .external_lex_state = 2}, + [1757] = {.lex_state = 72, .external_lex_state = 2}, + [1758] = {.lex_state = 72}, + [1759] = {.lex_state = 72}, + [1760] = {.lex_state = 72, .external_lex_state = 2}, + [1761] = {.lex_state = 72, .external_lex_state = 2}, + [1762] = {.lex_state = 72, .external_lex_state = 2}, + [1763] = {.lex_state = 72}, + [1764] = {.lex_state = 72}, + [1765] = {.lex_state = 72}, + [1766] = {.lex_state = 72}, + [1767] = {.lex_state = 72}, + [1768] = {.lex_state = 72}, + [1769] = {.lex_state = 72, .external_lex_state = 2}, + [1770] = {.lex_state = 5, .external_lex_state = 10}, + [1771] = {.lex_state = 72}, + [1772] = {.lex_state = 72, .external_lex_state = 2}, + [1773] = {.lex_state = 72}, + [1774] = {.lex_state = 72, .external_lex_state = 2}, + [1775] = {.lex_state = 72}, + [1776] = {.lex_state = 72}, + [1777] = {.lex_state = 72, .external_lex_state = 2}, + [1778] = {.lex_state = 72}, + [1779] = {.lex_state = 72, .external_lex_state = 2}, + [1780] = {.lex_state = 21}, + [1781] = {.lex_state = 72, .external_lex_state = 2}, + [1782] = {.lex_state = 72, .external_lex_state = 2}, + [1783] = {.lex_state = 72, .external_lex_state = 2}, + [1784] = {.lex_state = 72}, + [1785] = {.lex_state = 72, .external_lex_state = 2}, + [1786] = {.lex_state = 72}, + [1787] = {.lex_state = 72, .external_lex_state = 2}, + [1788] = {.lex_state = 72, .external_lex_state = 2}, + [1789] = {.lex_state = 72, .external_lex_state = 2}, + [1790] = {.lex_state = 21}, + [1791] = {.lex_state = 72}, + [1792] = {.lex_state = 72}, + [1793] = {.lex_state = 72, .external_lex_state = 2}, + [1794] = {.lex_state = 72, .external_lex_state = 2}, + [1795] = {.lex_state = 72}, + [1796] = {.lex_state = 72}, + [1797] = {.lex_state = 72}, + [1798] = {.lex_state = 72, .external_lex_state = 2}, + [1799] = {.lex_state = 72}, + [1800] = {.lex_state = 72}, + [1801] = {.lex_state = 72}, + [1802] = {.lex_state = 21}, + [1803] = {.lex_state = 72, .external_lex_state = 2}, + [1804] = {.lex_state = 72, .external_lex_state = 2}, + [1805] = {.lex_state = 72, .external_lex_state = 2}, + [1806] = {.lex_state = 72, .external_lex_state = 2}, + [1807] = {.lex_state = 72}, + [1808] = {.lex_state = 72, .external_lex_state = 2}, + [1809] = {.lex_state = 72}, + [1810] = {.lex_state = 72, .external_lex_state = 2}, + [1811] = {.lex_state = 16}, + [1812] = {.lex_state = 72, .external_lex_state = 2}, + [1813] = {.lex_state = 72, .external_lex_state = 2}, + [1814] = {.lex_state = 72, .external_lex_state = 2}, + [1815] = {.lex_state = 72, .external_lex_state = 2}, + [1816] = {.lex_state = 72, .external_lex_state = 2}, + [1817] = {.lex_state = 72, .external_lex_state = 2}, + [1818] = {.lex_state = 72, .external_lex_state = 2}, + [1819] = {.lex_state = 72, .external_lex_state = 2}, + [1820] = {.lex_state = 72, .external_lex_state = 2}, + [1821] = {.lex_state = 72, .external_lex_state = 2}, + [1822] = {.lex_state = 72}, + [1823] = {.lex_state = 72, .external_lex_state = 2}, + [1824] = {.lex_state = 72}, + [1825] = {.lex_state = 72}, + [1826] = {.lex_state = 72}, + [1827] = {.lex_state = 72, .external_lex_state = 2}, + [1828] = {.lex_state = 72}, + [1829] = {.lex_state = 72, .external_lex_state = 2}, + [1830] = {.lex_state = 72}, + [1831] = {.lex_state = 72, .external_lex_state = 2}, + [1832] = {.lex_state = 72, .external_lex_state = 2}, + [1833] = {.lex_state = 72, .external_lex_state = 2}, + [1834] = {.lex_state = 72, .external_lex_state = 2}, + [1835] = {.lex_state = 72}, + [1836] = {.lex_state = 72, .external_lex_state = 2}, + [1837] = {.lex_state = 72}, + [1838] = {.lex_state = 72, .external_lex_state = 2}, + [1839] = {.lex_state = 72}, + [1840] = {.lex_state = 72, .external_lex_state = 2}, + [1841] = {.lex_state = 72, .external_lex_state = 2}, + [1842] = {.lex_state = 72}, + [1843] = {.lex_state = 72, .external_lex_state = 2}, + [1844] = {.lex_state = 72}, + [1845] = {.lex_state = 72, .external_lex_state = 2}, + [1846] = {.lex_state = 72}, + [1847] = {.lex_state = 72, .external_lex_state = 2}, + [1848] = {.lex_state = 72, .external_lex_state = 2}, + [1849] = {.lex_state = 72}, + [1850] = {.lex_state = 72}, + [1851] = {.lex_state = 72}, + [1852] = {.lex_state = 72}, + [1853] = {.lex_state = 72}, + [1854] = {.lex_state = 72, .external_lex_state = 11}, + [1855] = {.lex_state = 72}, + [1856] = {.lex_state = 72}, + [1857] = {.lex_state = 72}, + [1858] = {.lex_state = 72}, + [1859] = {.lex_state = 72}, + [1860] = {.lex_state = 72}, + [1861] = {.lex_state = 72}, + [1862] = {.lex_state = 72}, + [1863] = {.lex_state = 72}, + [1864] = {.lex_state = 72}, + [1865] = {.lex_state = 72}, + [1866] = {.lex_state = 72}, + [1867] = {.lex_state = 72}, + [1868] = {.lex_state = 5, .external_lex_state = 12}, + [1869] = {.lex_state = 72}, + [1870] = {.lex_state = 72}, + [1871] = {.lex_state = 72}, + [1872] = {.lex_state = 72}, + [1873] = {.lex_state = 72}, + [1874] = {.lex_state = 72}, + [1875] = {.lex_state = 5, .external_lex_state = 12}, + [1876] = {.lex_state = 72, .external_lex_state = 2}, + [1877] = {.lex_state = 72}, + [1878] = {.lex_state = 72}, + [1879] = {.lex_state = 72}, + [1880] = {.lex_state = 72}, + [1881] = {.lex_state = 21}, + [1882] = {.lex_state = 72}, + [1883] = {.lex_state = 72}, + [1884] = {.lex_state = 72}, + [1885] = {.lex_state = 72}, + [1886] = {.lex_state = 72}, + [1887] = {.lex_state = 72}, + [1888] = {.lex_state = 72}, + [1889] = {.lex_state = 72}, + [1890] = {.lex_state = 72}, + [1891] = {.lex_state = 72}, + [1892] = {.lex_state = 72}, + [1893] = {.lex_state = 72}, + [1894] = {.lex_state = 72}, + [1895] = {.lex_state = 72}, + [1896] = {.lex_state = 72}, + [1897] = {.lex_state = 72}, + [1898] = {.lex_state = 72}, + [1899] = {.lex_state = 72, .external_lex_state = 2}, + [1900] = {.lex_state = 72, .external_lex_state = 2}, + [1901] = {.lex_state = 72}, + [1902] = {.lex_state = 72}, + [1903] = {.lex_state = 72, .external_lex_state = 2}, + [1904] = {.lex_state = 72, .external_lex_state = 2}, + [1905] = {.lex_state = 72}, + [1906] = {.lex_state = 72}, + [1907] = {.lex_state = 72}, + [1908] = {.lex_state = 21}, + [1909] = {.lex_state = 72}, + [1910] = {.lex_state = 72}, + [1911] = {.lex_state = 72}, + [1912] = {.lex_state = 21}, + [1913] = {.lex_state = 72}, + [1914] = {.lex_state = 72}, + [1915] = {.lex_state = 72}, + [1916] = {.lex_state = 72}, + [1917] = {.lex_state = 72}, + [1918] = {.lex_state = 5, .external_lex_state = 12}, + [1919] = {.lex_state = 5, .external_lex_state = 12}, + [1920] = {.lex_state = 72}, + [1921] = {.lex_state = 72}, + [1922] = {.lex_state = 72}, + [1923] = {.lex_state = 72, .external_lex_state = 2}, + [1924] = {.lex_state = 72}, + [1925] = {.lex_state = 72}, + [1926] = {.lex_state = 72}, + [1927] = {.lex_state = 72}, + [1928] = {.lex_state = 72}, + [1929] = {.lex_state = 72}, + [1930] = {.lex_state = 72}, + [1931] = {.lex_state = 72}, + [1932] = {.lex_state = 72}, + [1933] = {.lex_state = 72}, + [1934] = {.lex_state = 72}, + [1935] = {.lex_state = 72}, + [1936] = {.lex_state = 72}, + [1937] = {.lex_state = 72}, + [1938] = {.lex_state = 72}, + [1939] = {.lex_state = 72}, + [1940] = {.lex_state = 72}, + [1941] = {.lex_state = 72}, + [1942] = {.lex_state = 72}, + [1943] = {.lex_state = 72}, + [1944] = {.lex_state = 72}, + [1945] = {.lex_state = 72}, + [1946] = {.lex_state = 72}, + [1947] = {.lex_state = 72}, + [1948] = {.lex_state = 72}, + [1949] = {.lex_state = 72}, + [1950] = {.lex_state = 72}, + [1951] = {.lex_state = 72}, + [1952] = {.lex_state = 72}, + [1953] = {.lex_state = 72}, + [1954] = {.lex_state = 72}, + [1955] = {.lex_state = 5, .external_lex_state = 12}, + [1956] = {.lex_state = 72}, + [1957] = {.lex_state = 5, .external_lex_state = 12}, + [1958] = {.lex_state = 72}, + [1959] = {.lex_state = 72}, + [1960] = {.lex_state = 72}, + [1961] = {.lex_state = 72}, + [1962] = {.lex_state = 72}, + [1963] = {.lex_state = 72}, + [1964] = {.lex_state = 72}, + [1965] = {.lex_state = 72}, + [1966] = {.lex_state = 72}, + [1967] = {.lex_state = 72}, + [1968] = {.lex_state = 72}, + [1969] = {.lex_state = 72}, + [1970] = {.lex_state = 72}, + [1971] = {.lex_state = 72}, + [1972] = {.lex_state = 72}, + [1973] = {.lex_state = 72}, + [1974] = {.lex_state = 72}, + [1975] = {.lex_state = 72}, + [1976] = {.lex_state = 72}, + [1977] = {.lex_state = 72}, + [1978] = {.lex_state = 72}, + [1979] = {.lex_state = 72}, + [1980] = {.lex_state = 21}, + [1981] = {.lex_state = 72}, + [1982] = {.lex_state = 72}, + [1983] = {.lex_state = 72}, + [1984] = {.lex_state = 72, .external_lex_state = 2}, + [1985] = {.lex_state = 72}, + [1986] = {.lex_state = 72}, + [1987] = {.lex_state = 72}, + [1988] = {.lex_state = 72}, + [1989] = {.lex_state = 72}, + [1990] = {.lex_state = 72}, + [1991] = {.lex_state = 72}, + [1992] = {.lex_state = 72}, + [1993] = {.lex_state = 72}, + [1994] = {.lex_state = 72}, + [1995] = {.lex_state = 72}, + [1996] = {.lex_state = 72}, + [1997] = {.lex_state = 72}, + [1998] = {.lex_state = 72}, + [1999] = {.lex_state = 72}, + [2000] = {.lex_state = 72}, + [2001] = {.lex_state = 72}, + [2002] = {.lex_state = 72}, + [2003] = {.lex_state = 179, .external_lex_state = 13}, + [2004] = {.lex_state = 72}, + [2005] = {.lex_state = 72}, + [2006] = {.lex_state = 72}, + [2007] = {.lex_state = 72}, + [2008] = {.lex_state = 72}, + [2009] = {.lex_state = 72}, + [2010] = {.lex_state = 72}, + [2011] = {.lex_state = 72}, + [2012] = {.lex_state = 72}, + [2013] = {.lex_state = 72}, + [2014] = {.lex_state = 72}, + [2015] = {.lex_state = 72}, + [2016] = {.lex_state = 72}, + [2017] = {.lex_state = 72}, + [2018] = {.lex_state = 72}, + [2019] = {.lex_state = 72}, + [2020] = {.lex_state = 72}, + [2021] = {.lex_state = 72}, + [2022] = {.lex_state = 72}, + [2023] = {.lex_state = 72}, + [2024] = {.lex_state = 72}, + [2025] = {.lex_state = 72}, + [2026] = {.lex_state = 72}, + [2027] = {.lex_state = 72}, + [2028] = {.lex_state = 72}, + [2029] = {.lex_state = 72, .external_lex_state = 2}, + [2030] = {.lex_state = 72}, + [2031] = {.lex_state = 72}, + [2032] = {.lex_state = 72}, + [2033] = {.lex_state = 72}, + [2034] = {.lex_state = 72}, + [2035] = {.lex_state = 72}, + [2036] = {.lex_state = 72}, + [2037] = {.lex_state = 72}, + [2038] = {.lex_state = 72, .external_lex_state = 11}, + [2039] = {.lex_state = 72}, + [2040] = {.lex_state = 72}, + [2041] = {.lex_state = 72}, + [2042] = {.lex_state = 72}, + [2043] = {.lex_state = 72}, + [2044] = {.lex_state = 72}, + [2045] = {.lex_state = 72, .external_lex_state = 2}, + [2046] = {.lex_state = 72, .external_lex_state = 2}, + [2047] = {.lex_state = 72}, + [2048] = {.lex_state = 72}, + [2049] = {.lex_state = 72}, + [2050] = {.lex_state = 72}, + [2051] = {.lex_state = 72}, + [2052] = {.lex_state = 72}, + [2053] = {.lex_state = 72}, + [2054] = {.lex_state = 72}, + [2055] = {.lex_state = 72}, + [2056] = {.lex_state = 72}, + [2057] = {.lex_state = 72}, + [2058] = {.lex_state = 72}, + [2059] = {.lex_state = 72}, + [2060] = {.lex_state = 72}, + [2061] = {.lex_state = 72}, + [2062] = {.lex_state = 72}, + [2063] = {.lex_state = 72}, + [2064] = {.lex_state = 72}, + [2065] = {.lex_state = 72}, + [2066] = {.lex_state = 72}, + [2067] = {.lex_state = 72}, + [2068] = {.lex_state = 72}, + [2069] = {.lex_state = 72, .external_lex_state = 2}, + [2070] = {.lex_state = 72}, + [2071] = {.lex_state = 72}, + [2072] = {.lex_state = 72}, + [2073] = {.lex_state = 72}, + [2074] = {.lex_state = 72}, + [2075] = {.lex_state = 72}, + [2076] = {.lex_state = 72}, + [2077] = {.lex_state = 72}, + [2078] = {.lex_state = 72}, + [2079] = {.lex_state = 72}, + [2080] = {.lex_state = 72}, + [2081] = {.lex_state = 72}, + [2082] = {.lex_state = 72}, + [2083] = {.lex_state = 72}, + [2084] = {.lex_state = 72, .external_lex_state = 2}, + [2085] = {.lex_state = 72}, + [2086] = {.lex_state = 72, .external_lex_state = 2}, + [2087] = {.lex_state = 72}, + [2088] = {.lex_state = 72}, + [2089] = {.lex_state = 72}, + [2090] = {.lex_state = 72, .external_lex_state = 2}, + [2091] = {.lex_state = 72}, + [2092] = {.lex_state = 72}, + [2093] = {.lex_state = 72, .external_lex_state = 2}, + [2094] = {.lex_state = 72}, + [2095] = {.lex_state = 72}, + [2096] = {.lex_state = 72}, + [2097] = {.lex_state = 72}, + [2098] = {.lex_state = 72}, + [2099] = {.lex_state = 72}, + [2100] = {.lex_state = 72}, + [2101] = {.lex_state = 72}, + [2102] = {.lex_state = 72}, + [2103] = {.lex_state = 72}, + [2104] = {.lex_state = 72}, + [2105] = {.lex_state = 72}, + [2106] = {.lex_state = 72}, + [2107] = {.lex_state = 72}, + [2108] = {.lex_state = 72}, + [2109] = {.lex_state = 72}, + [2110] = {.lex_state = 72, .external_lex_state = 2}, + [2111] = {.lex_state = 72}, + [2112] = {.lex_state = 72}, + [2113] = {.lex_state = 5, .external_lex_state = 12}, + [2114] = {.lex_state = 72, .external_lex_state = 2}, + [2115] = {.lex_state = 72, .external_lex_state = 2}, + [2116] = {.lex_state = 72}, + [2117] = {.lex_state = 72, .external_lex_state = 2}, + [2118] = {.lex_state = 72}, + [2119] = {.lex_state = 72, .external_lex_state = 2}, + [2120] = {.lex_state = 72}, + [2121] = {.lex_state = 72}, + [2122] = {.lex_state = 72}, + [2123] = {.lex_state = 72}, + [2124] = {.lex_state = 72}, + [2125] = {.lex_state = 72}, + [2126] = {.lex_state = 72}, + [2127] = {.lex_state = 72, .external_lex_state = 2}, + [2128] = {.lex_state = 72}, + [2129] = {.lex_state = 72}, + [2130] = {.lex_state = 72}, + [2131] = {.lex_state = 72}, + [2132] = {.lex_state = 72}, + [2133] = {.lex_state = 72}, + [2134] = {.lex_state = 72}, + [2135] = {.lex_state = 72}, + [2136] = {.lex_state = 72}, + [2137] = {.lex_state = 72}, + [2138] = {.lex_state = 72}, + [2139] = {.lex_state = 72}, + [2140] = {.lex_state = 72}, + [2141] = {.lex_state = 72}, + [2142] = {.lex_state = 72}, + [2143] = {.lex_state = 72}, + [2144] = {.lex_state = 23}, + [2145] = {.lex_state = 72}, + [2146] = {.lex_state = 5, .external_lex_state = 12}, + [2147] = {.lex_state = 72}, + [2148] = {.lex_state = 72}, + [2149] = {.lex_state = 72}, + [2150] = {.lex_state = 72}, + [2151] = {.lex_state = 72}, + [2152] = {.lex_state = 72}, + [2153] = {.lex_state = 72}, + [2154] = {.lex_state = 72}, + [2155] = {.lex_state = 72}, + [2156] = {.lex_state = 72}, + [2157] = {.lex_state = 72}, + [2158] = {.lex_state = 72, .external_lex_state = 2}, + [2159] = {.lex_state = 72, .external_lex_state = 2}, + [2160] = {.lex_state = 72, .external_lex_state = 2}, + [2161] = {.lex_state = 72}, + [2162] = {.lex_state = 72, .external_lex_state = 2}, + [2163] = {.lex_state = 72, .external_lex_state = 2}, + [2164] = {.lex_state = 72}, + [2165] = {.lex_state = 72}, + [2166] = {.lex_state = 72}, + [2167] = {.lex_state = 72}, + [2168] = {.lex_state = 72, .external_lex_state = 2}, + [2169] = {.lex_state = 72}, + [2170] = {.lex_state = 72}, + [2171] = {.lex_state = 72, .external_lex_state = 2}, + [2172] = {.lex_state = 72, .external_lex_state = 2}, + [2173] = {.lex_state = 72, .external_lex_state = 2}, + [2174] = {.lex_state = 72, .external_lex_state = 2}, + [2175] = {.lex_state = 72, .external_lex_state = 2}, + [2176] = {.lex_state = 72}, + [2177] = {.lex_state = 72}, + [2178] = {.lex_state = 72}, + [2179] = {.lex_state = 72}, + [2180] = {.lex_state = 72}, + [2181] = {.lex_state = 72}, + [2182] = {.lex_state = 72}, + [2183] = {.lex_state = 72}, + [2184] = {.lex_state = 72}, + [2185] = {.lex_state = 72, .external_lex_state = 2}, + [2186] = {.lex_state = 72, .external_lex_state = 2}, + [2187] = {.lex_state = 72}, + [2188] = {.lex_state = 72}, + [2189] = {.lex_state = 72}, + [2190] = {.lex_state = 72}, + [2191] = {.lex_state = 72}, + [2192] = {.lex_state = 72}, + [2193] = {.lex_state = 72, .external_lex_state = 2}, + [2194] = {.lex_state = 72}, + [2195] = {.lex_state = 72}, + [2196] = {.lex_state = 72}, + [2197] = {.lex_state = 72}, + [2198] = {.lex_state = 72}, + [2199] = {.lex_state = 5, .external_lex_state = 12}, + [2200] = {.lex_state = 72, .external_lex_state = 2}, + [2201] = {.lex_state = 72}, + [2202] = {.lex_state = 72}, + [2203] = {.lex_state = 72}, + [2204] = {.lex_state = 72}, + [2205] = {.lex_state = 72}, + [2206] = {.lex_state = 72}, + [2207] = {.lex_state = 72}, + [2208] = {.lex_state = 72}, + [2209] = {.lex_state = 72}, + [2210] = {.lex_state = 72}, + [2211] = {.lex_state = 72}, + [2212] = {.lex_state = 72}, + [2213] = {.lex_state = 72}, + [2214] = {.lex_state = 72}, + [2215] = {.lex_state = 72}, + [2216] = {.lex_state = 72}, + [2217] = {.lex_state = 72}, + [2218] = {.lex_state = 72}, + [2219] = {.lex_state = 72}, + [2220] = {.lex_state = 72}, + [2221] = {.lex_state = 72}, + [2222] = {.lex_state = 72}, + [2223] = {.lex_state = 72}, + [2224] = {.lex_state = 72}, + [2225] = {.lex_state = 72, .external_lex_state = 2}, + [2226] = {.lex_state = 72}, + [2227] = {.lex_state = 72}, + [2228] = {.lex_state = 72, .external_lex_state = 2}, + [2229] = {.lex_state = 72}, + [2230] = {.lex_state = 72}, + [2231] = {.lex_state = 72}, + [2232] = {.lex_state = 5, .external_lex_state = 12}, + [2233] = {.lex_state = 72}, + [2234] = {.lex_state = 72}, + [2235] = {.lex_state = 72}, + [2236] = {.lex_state = 72}, + [2237] = {.lex_state = 72, .external_lex_state = 2}, + [2238] = {.lex_state = 72}, + [2239] = {.lex_state = 72}, + [2240] = {.lex_state = 72}, + [2241] = {.lex_state = 72}, + [2242] = {.lex_state = 72}, + [2243] = {.lex_state = 72}, + [2244] = {.lex_state = 72, .external_lex_state = 2}, + [2245] = {.lex_state = 72, .external_lex_state = 2}, + [2246] = {.lex_state = 72, .external_lex_state = 2}, + [2247] = {.lex_state = 72}, + [2248] = {.lex_state = 72}, + [2249] = {.lex_state = 72, .external_lex_state = 2}, + [2250] = {.lex_state = 72}, + [2251] = {.lex_state = 72}, + [2252] = {.lex_state = 72}, + [2253] = {.lex_state = 72}, + [2254] = {.lex_state = 72}, + [2255] = {.lex_state = 72, .external_lex_state = 2}, + [2256] = {.lex_state = 72, .external_lex_state = 2}, + [2257] = {.lex_state = 72}, + [2258] = {.lex_state = 72}, + [2259] = {.lex_state = 72, .external_lex_state = 2}, + [2260] = {.lex_state = 72, .external_lex_state = 2}, + [2261] = {.lex_state = 72, .external_lex_state = 2}, + [2262] = {.lex_state = 72}, + [2263] = {.lex_state = 72}, + [2264] = {.lex_state = 72}, + [2265] = {.lex_state = 72}, + [2266] = {.lex_state = 72, .external_lex_state = 2}, + [2267] = {.lex_state = 72}, + [2268] = {.lex_state = 72}, + [2269] = {.lex_state = 72}, + [2270] = {.lex_state = 72}, + [2271] = {.lex_state = 72}, + [2272] = {.lex_state = 72}, + [2273] = {.lex_state = 72}, + [2274] = {.lex_state = 72}, + [2275] = {.lex_state = 72}, + [2276] = {.lex_state = 72}, + [2277] = {.lex_state = 72}, + [2278] = {.lex_state = 72}, + [2279] = {.lex_state = 72}, + [2280] = {.lex_state = 5, .external_lex_state = 12}, + [2281] = {.lex_state = 72, .external_lex_state = 2}, + [2282] = {.lex_state = 72}, + [2283] = {.lex_state = 72}, + [2284] = {.lex_state = 72}, + [2285] = {.lex_state = 72}, + [2286] = {.lex_state = 72}, + [2287] = {.lex_state = 72}, + [2288] = {.lex_state = 72}, + [2289] = {.lex_state = 72}, + [2290] = {.lex_state = 72, .external_lex_state = 2}, + [2291] = {.lex_state = 72}, + [2292] = {.lex_state = 72}, + [2293] = {.lex_state = 72}, + [2294] = {.lex_state = 72}, + [2295] = {.lex_state = 72, .external_lex_state = 2}, + [2296] = {.lex_state = 72}, + [2297] = {.lex_state = 72}, + [2298] = {.lex_state = 72}, + [2299] = {.lex_state = 72, .external_lex_state = 2}, + [2300] = {.lex_state = 72}, + [2301] = {.lex_state = 72}, + [2302] = {.lex_state = 72}, + [2303] = {.lex_state = 72}, + [2304] = {.lex_state = 72}, + [2305] = {.lex_state = 72, .external_lex_state = 2}, + [2306] = {.lex_state = 72}, + [2307] = {.lex_state = 72, .external_lex_state = 2}, + [2308] = {.lex_state = 72}, + [2309] = {.lex_state = 72}, + [2310] = {.lex_state = 72}, + [2311] = {.lex_state = 72}, + [2312] = {.lex_state = 72}, + [2313] = {.lex_state = 72, .external_lex_state = 2}, + [2314] = {.lex_state = 72}, + [2315] = {.lex_state = 72}, + [2316] = {.lex_state = 72}, + [2317] = {.lex_state = 72}, + [2318] = {.lex_state = 72}, + [2319] = {.lex_state = 72, .external_lex_state = 2}, + [2320] = {.lex_state = 72, .external_lex_state = 2}, + [2321] = {.lex_state = 72}, + [2322] = {.lex_state = 72}, + [2323] = {.lex_state = 72}, + [2324] = {.lex_state = 72}, + [2325] = {.lex_state = 72}, + [2326] = {.lex_state = 72}, + [2327] = {.lex_state = 72}, + [2328] = {.lex_state = 72}, + [2329] = {.lex_state = 72}, + [2330] = {.lex_state = 72}, + [2331] = {.lex_state = 72}, + [2332] = {.lex_state = 72}, + [2333] = {.lex_state = 72}, + [2334] = {.lex_state = 72, .external_lex_state = 2}, + [2335] = {.lex_state = 23}, + [2336] = {.lex_state = 72, .external_lex_state = 2}, + [2337] = {.lex_state = 5, .external_lex_state = 12}, + [2338] = {.lex_state = 72}, + [2339] = {.lex_state = 5, .external_lex_state = 12}, + [2340] = {.lex_state = 72}, + [2341] = {.lex_state = 72}, + [2342] = {.lex_state = 72}, + [2343] = {.lex_state = 72, .external_lex_state = 2}, + [2344] = {.lex_state = 72, .external_lex_state = 2}, + [2345] = {.lex_state = 72, .external_lex_state = 2}, + [2346] = {.lex_state = 72, .external_lex_state = 2}, + [2347] = {.lex_state = 72}, + [2348] = {.lex_state = 72}, + [2349] = {.lex_state = 72}, + [2350] = {.lex_state = 72}, + [2351] = {.lex_state = 72}, + [2352] = {.lex_state = 72, .external_lex_state = 2}, + [2353] = {.lex_state = 72}, + [2354] = {.lex_state = 72}, + [2355] = {.lex_state = 72}, + [2356] = {.lex_state = 72}, + [2357] = {.lex_state = 72, .external_lex_state = 2}, + [2358] = {.lex_state = 72}, + [2359] = {.lex_state = 72}, + [2360] = {.lex_state = 72, .external_lex_state = 2}, + [2361] = {.lex_state = 72, .external_lex_state = 2}, + [2362] = {.lex_state = 72}, + [2363] = {.lex_state = 72, .external_lex_state = 2}, + [2364] = {.lex_state = 72, .external_lex_state = 2}, + [2365] = {.lex_state = 72}, + [2366] = {.lex_state = 72}, + [2367] = {.lex_state = 72}, + [2368] = {.lex_state = 72}, + [2369] = {.lex_state = 72}, + [2370] = {.lex_state = 72}, + [2371] = {.lex_state = 72}, + [2372] = {.lex_state = 72}, + [2373] = {.lex_state = 72}, + [2374] = {.lex_state = 72}, + [2375] = {.lex_state = 72}, + [2376] = {.lex_state = 72}, + [2377] = {.lex_state = 72}, + [2378] = {.lex_state = 72}, + [2379] = {.lex_state = 72}, + [2380] = {.lex_state = 72}, + [2381] = {.lex_state = 72}, + [2382] = {.lex_state = 72, .external_lex_state = 2}, + [2383] = {.lex_state = 72}, + [2384] = {.lex_state = 72}, + [2385] = {.lex_state = 72}, + [2386] = {.lex_state = 72}, + [2387] = {.lex_state = 72}, + [2388] = {.lex_state = 72}, + [2389] = {.lex_state = 72}, + [2390] = {.lex_state = 72}, + [2391] = {.lex_state = 72}, + [2392] = {.lex_state = 72}, + [2393] = {.lex_state = 72}, + [2394] = {.lex_state = 72}, + [2395] = {.lex_state = 72}, + [2396] = {.lex_state = 72}, + [2397] = {.lex_state = 72, .external_lex_state = 12}, + [2398] = {.lex_state = 72}, + [2399] = {.lex_state = 72}, + [2400] = {.lex_state = 72}, + [2401] = {.lex_state = 72}, + [2402] = {.lex_state = 72}, + [2403] = {.lex_state = 72}, + [2404] = {.lex_state = 72}, + [2405] = {.lex_state = 72}, + [2406] = {.lex_state = 72}, + [2407] = {.lex_state = 72}, + [2408] = {.lex_state = 72}, + [2409] = {.lex_state = 72}, + [2410] = {.lex_state = 72}, + [2411] = {.lex_state = 72}, + [2412] = {.lex_state = 72}, + [2413] = {.lex_state = 72, .external_lex_state = 12}, + [2414] = {.lex_state = 72}, + [2415] = {.lex_state = 72}, + [2416] = {.lex_state = 72}, + [2417] = {.lex_state = 72}, + [2418] = {.lex_state = 72}, + [2419] = {.lex_state = 72}, + [2420] = {.lex_state = 72}, + [2421] = {.lex_state = 72}, + [2422] = {.lex_state = 72, .external_lex_state = 12}, + [2423] = {.lex_state = 72}, + [2424] = {.lex_state = 72}, + [2425] = {.lex_state = 72}, + [2426] = {.lex_state = 72}, + [2427] = {.lex_state = 72}, + [2428] = {.lex_state = 72}, + [2429] = {.lex_state = 72}, + [2430] = {.lex_state = 9}, + [2431] = {.lex_state = 9}, + [2432] = {.lex_state = 72}, + [2433] = {.lex_state = 72}, + [2434] = {.lex_state = 72}, + [2435] = {.lex_state = 72}, + [2436] = {.lex_state = 72}, + [2437] = {.lex_state = 72}, + [2438] = {.lex_state = 72}, + [2439] = {.lex_state = 72}, + [2440] = {.lex_state = 72}, + [2441] = {.lex_state = 72}, + [2442] = {.lex_state = 72}, + [2443] = {.lex_state = 72}, + [2444] = {.lex_state = 72}, + [2445] = {.lex_state = 72}, + [2446] = {.lex_state = 72}, + [2447] = {.lex_state = 72}, + [2448] = {.lex_state = 72}, + [2449] = {.lex_state = 72}, + [2450] = {.lex_state = 72}, + [2451] = {.lex_state = 72}, + [2452] = {.lex_state = 72}, + [2453] = {.lex_state = 72}, + [2454] = {.lex_state = 72}, + [2455] = {.lex_state = 72}, + [2456] = {.lex_state = 72}, + [2457] = {.lex_state = 72}, + [2458] = {.lex_state = 72}, + [2459] = {.lex_state = 72}, + [2460] = {.lex_state = 72}, + [2461] = {.lex_state = 72}, + [2462] = {.lex_state = 72}, + [2463] = {.lex_state = 72}, + [2464] = {.lex_state = 72}, + [2465] = {.lex_state = 72}, + [2466] = {.lex_state = 72}, + [2467] = {.lex_state = 72}, + [2468] = {.lex_state = 9}, + [2469] = {.lex_state = 72}, + [2470] = {.lex_state = 9}, + [2471] = {.lex_state = 72}, + [2472] = {.lex_state = 72}, + [2473] = {.lex_state = 72}, + [2474] = {.lex_state = 72}, + [2475] = {.lex_state = 72}, + [2476] = {.lex_state = 72}, + [2477] = {.lex_state = 72}, + [2478] = {.lex_state = 72, .external_lex_state = 12}, + [2479] = {.lex_state = 72}, + [2480] = {.lex_state = 72}, + [2481] = {.lex_state = 72}, + [2482] = {.lex_state = 72}, + [2483] = {.lex_state = 72}, + [2484] = {.lex_state = 72}, + [2485] = {.lex_state = 72}, + [2486] = {.lex_state = 72}, + [2487] = {.lex_state = 72}, + [2488] = {.lex_state = 72}, + [2489] = {.lex_state = 72}, + [2490] = {.lex_state = 72}, + [2491] = {.lex_state = 72}, + [2492] = {.lex_state = 72}, + [2493] = {.lex_state = 72}, + [2494] = {.lex_state = 72}, + [2495] = {.lex_state = 72}, + [2496] = {.lex_state = 72}, + [2497] = {.lex_state = 72}, + [2498] = {.lex_state = 72}, + [2499] = {.lex_state = 72}, + [2500] = {.lex_state = 72}, + [2501] = {.lex_state = 72}, + [2502] = {.lex_state = 72}, + [2503] = {.lex_state = 72}, + [2504] = {.lex_state = 72}, + [2505] = {.lex_state = 72}, + [2506] = {.lex_state = 72}, + [2507] = {.lex_state = 72}, + [2508] = {.lex_state = 72, .external_lex_state = 11}, + [2509] = {.lex_state = 72, .external_lex_state = 11}, + [2510] = {.lex_state = 72}, + [2511] = {.lex_state = 72, .external_lex_state = 11}, + [2512] = {.lex_state = 72, .external_lex_state = 11}, + [2513] = {.lex_state = 72}, + [2514] = {.lex_state = 72}, + [2515] = {.lex_state = 72}, + [2516] = {.lex_state = 72}, + [2517] = {.lex_state = 72}, + [2518] = {.lex_state = 72}, + [2519] = {.lex_state = 72}, + [2520] = {.lex_state = 72}, + [2521] = {.lex_state = 72}, + [2522] = {.lex_state = 72}, + [2523] = {.lex_state = 72}, + [2524] = {.lex_state = 72}, + [2525] = {.lex_state = 72}, + [2526] = {.lex_state = 72}, + [2527] = {.lex_state = 72}, + [2528] = {.lex_state = 72}, + [2529] = {.lex_state = 72}, + [2530] = {.lex_state = 72}, + [2531] = {.lex_state = 72}, + [2532] = {.lex_state = 72}, + [2533] = {.lex_state = 72}, + [2534] = {.lex_state = 72}, + [2535] = {.lex_state = 72}, + [2536] = {.lex_state = 72}, + [2537] = {.lex_state = 72}, + [2538] = {.lex_state = 72}, + [2539] = {.lex_state = 72}, + [2540] = {.lex_state = 72}, + [2541] = {.lex_state = 72}, + [2542] = {.lex_state = 72}, + [2543] = {.lex_state = 72}, + [2544] = {.lex_state = 72}, + [2545] = {.lex_state = 72}, + [2546] = {.lex_state = 72}, + [2547] = {.lex_state = 72}, + [2548] = {.lex_state = 72}, + [2549] = {.lex_state = 72}, + [2550] = {.lex_state = 72}, + [2551] = {.lex_state = 72}, + [2552] = {.lex_state = 72}, + [2553] = {.lex_state = 72}, + [2554] = {.lex_state = 72}, + [2555] = {.lex_state = 72}, + [2556] = {.lex_state = 72}, + [2557] = {.lex_state = 72}, + [2558] = {.lex_state = 72}, + [2559] = {.lex_state = 72}, + [2560] = {.lex_state = 72}, + [2561] = {.lex_state = 72}, + [2562] = {.lex_state = 72}, + [2563] = {.lex_state = 72}, + [2564] = {.lex_state = 72}, + [2565] = {.lex_state = 72}, + [2566] = {.lex_state = 72}, + [2567] = {.lex_state = 72}, + [2568] = {.lex_state = 72}, + [2569] = {.lex_state = 72}, + [2570] = {.lex_state = 72}, + [2571] = {.lex_state = 72}, + [2572] = {.lex_state = 72}, + [2573] = {.lex_state = 72}, + [2574] = {.lex_state = 72}, + [2575] = {.lex_state = 72, .external_lex_state = 12}, + [2576] = {.lex_state = 72}, + [2577] = {.lex_state = 72}, + [2578] = {.lex_state = 72, .external_lex_state = 12}, + [2579] = {.lex_state = 72}, + [2580] = {.lex_state = 72}, + [2581] = {.lex_state = 72}, + [2582] = {.lex_state = 72}, + [2583] = {.lex_state = 72}, + [2584] = {.lex_state = 72}, + [2585] = {.lex_state = 72}, + [2586] = {.lex_state = 72}, + [2587] = {.lex_state = 72}, + [2588] = {.lex_state = 72}, + [2589] = {.lex_state = 72}, + [2590] = {.lex_state = 72}, + [2591] = {.lex_state = 72}, + [2592] = {.lex_state = 72}, + [2593] = {.lex_state = 72}, + [2594] = {.lex_state = 72}, + [2595] = {.lex_state = 72}, + [2596] = {.lex_state = 72}, + [2597] = {.lex_state = 72}, + [2598] = {.lex_state = 72}, + [2599] = {.lex_state = 72}, + [2600] = {.lex_state = 72}, + [2601] = {.lex_state = 72}, + [2602] = {.lex_state = 72}, + [2603] = {.lex_state = 72}, + [2604] = {.lex_state = 72}, + [2605] = {.lex_state = 72}, + [2606] = {.lex_state = 72}, + [2607] = {.lex_state = 72}, + [2608] = {.lex_state = 72}, + [2609] = {.lex_state = 72}, + [2610] = {.lex_state = 72}, + [2611] = {.lex_state = 72}, +}; + +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), + [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(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__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(2573), + [sym_empty_statement] = STATE(16), + [sym_function_static_declaration] = STATE(16), + [sym_global_declaration] = STATE(16), + [sym_namespace_definition] = STATE(16), + [sym_namespace_use_declaration] = STATE(16), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(16), + [sym_interface_declaration] = STATE(16), + [sym_enum_declaration] = STATE(16), + [sym_class_declaration] = STATE(16), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(16), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(16), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(16), + [sym_unset_statement] = STATE(16), + [sym_declare_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_foreach_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(16), + [sym_compound_statement] = STATE(16), + [sym_named_label_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(5), + [sym_function_static_declaration] = STATE(5), + [sym_global_declaration] = STATE(5), + [sym_namespace_definition] = STATE(5), + [sym_namespace_use_declaration] = STATE(5), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(5), + [sym_interface_declaration] = STATE(5), + [sym_enum_declaration] = STATE(5), + [sym_class_declaration] = STATE(5), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(5), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(5), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(5), + [sym_unset_statement] = STATE(5), + [sym_declare_statement] = STATE(5), + [sym_try_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_foreach_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(5), + [sym_compound_statement] = STATE(5), + [sym_named_label_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(4), + [sym_function_static_declaration] = STATE(4), + [sym_global_declaration] = STATE(4), + [sym_namespace_definition] = STATE(4), + [sym_namespace_use_declaration] = STATE(4), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_enum_declaration] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(4), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(4), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(4), + [sym_unset_statement] = STATE(4), + [sym_declare_statement] = STATE(4), + [sym_try_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_foreach_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(4), + [sym_compound_statement] = STATE(4), + [sym_named_label_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(11), + [sym_interface_declaration] = STATE(11), + [sym_enum_declaration] = STATE(11), + [sym_class_declaration] = STATE(11), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(11), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(11), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(11), + [sym_compound_statement] = STATE(11), + [sym_named_label_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(326), + [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(326), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_if_statement_token2] = ACTIONS(326), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(10), + [sym_interface_declaration] = STATE(10), + [sym_enum_declaration] = STATE(10), + [sym_class_declaration] = STATE(10), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(10), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(10), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(10), + [sym_compound_statement] = STATE(10), + [sym_named_label_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_token1] = ACTIONS(336), + [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), + }, + [9] = { + [sym_empty_statement] = STATE(8), + [sym_function_static_declaration] = STATE(8), + [sym_global_declaration] = STATE(8), + [sym_namespace_definition] = STATE(8), + [sym_namespace_use_declaration] = STATE(8), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(8), + [sym_interface_declaration] = STATE(8), + [sym_enum_declaration] = STATE(8), + [sym_class_declaration] = STATE(8), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(8), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(8), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(8), + [sym_unset_statement] = STATE(8), + [sym_declare_statement] = STATE(8), + [sym_try_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_foreach_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(8), + [sym_compound_statement] = STATE(8), + [sym_named_label_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_token1] = ACTIONS(336), + [aux_sym_if_statement_token2] = ACTIONS(326), + [aux_sym_else_if_clause_token1] = ACTIONS(326), + [aux_sym_else_clause_token1] = ACTIONS(326), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(10), + [sym_interface_declaration] = STATE(10), + [sym_enum_declaration] = STATE(10), + [sym_class_declaration] = STATE(10), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(10), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(10), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(10), + [sym_compound_statement] = STATE(10), + [sym_named_label_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [11] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [12] = { + [sym_empty_statement] = STATE(1956), + [sym_function_static_declaration] = STATE(1956), + [sym_global_declaration] = STATE(1956), + [sym_namespace_definition] = STATE(1956), + [sym_namespace_use_declaration] = STATE(1956), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1956), + [sym_interface_declaration] = STATE(1956), + [sym_enum_declaration] = STATE(1956), + [sym_class_declaration] = STATE(1956), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1956), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1956), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1956), + [sym_unset_statement] = STATE(1956), + [sym_declare_statement] = STATE(1956), + [sym_try_statement] = STATE(1956), + [sym_goto_statement] = STATE(1956), + [sym_continue_statement] = STATE(1956), + [sym_break_statement] = STATE(1956), + [sym_return_statement] = STATE(1956), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1956), + [sym_do_statement] = STATE(1956), + [sym_for_statement] = STATE(1956), + [sym_foreach_statement] = STATE(1956), + [sym_if_statement] = STATE(1956), + [sym_colon_block] = STATE(2425), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1956), + [sym_compound_statement] = STATE(1956), + [sym_named_label_statement] = STATE(1956), + [sym_expression_statement] = STATE(1956), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(377), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(409), + }, + [13] = { + [sym_empty_statement] = STATE(14), + [sym_function_static_declaration] = STATE(14), + [sym_global_declaration] = STATE(14), + [sym_namespace_definition] = STATE(14), + [sym_namespace_use_declaration] = STATE(14), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(14), + [sym_interface_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_class_declaration] = STATE(14), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(14), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(14), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(14), + [sym_unset_statement] = STATE(14), + [sym_declare_statement] = STATE(14), + [sym_try_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_foreach_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(14), + [sym_compound_statement] = STATE(14), + [sym_named_label_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(411), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(413), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(415), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(417), + [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), + }, + [15] = { + [sym_empty_statement] = STATE(549), + [sym_function_static_declaration] = STATE(549), + [sym_global_declaration] = STATE(549), + [sym_namespace_definition] = STATE(549), + [sym_namespace_use_declaration] = STATE(549), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_class_declaration] = STATE(549), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(549), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(549), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(549), + [sym_unset_statement] = STATE(549), + [sym_declare_statement] = STATE(549), + [sym_try_statement] = STATE(549), + [sym_goto_statement] = STATE(549), + [sym_continue_statement] = STATE(549), + [sym_break_statement] = STATE(549), + [sym_return_statement] = STATE(549), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(549), + [sym_do_statement] = STATE(549), + [sym_for_statement] = STATE(549), + [sym_foreach_statement] = STATE(549), + [sym_if_statement] = STATE(549), + [sym_colon_block] = STATE(2606), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(549), + [sym_compound_statement] = STATE(549), + [sym_named_label_statement] = STATE(549), + [sym_expression_statement] = STATE(549), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(419), + [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(377), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + [sym__automatic_semicolon] = ACTIONS(421), + }, + [16] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(411), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(413), + [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), + }, + [17] = { + [sym_empty_statement] = STATE(1956), + [sym_function_static_declaration] = STATE(1956), + [sym_global_declaration] = STATE(1956), + [sym_namespace_definition] = STATE(1956), + [sym_namespace_use_declaration] = STATE(1956), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1956), + [sym_interface_declaration] = STATE(1956), + [sym_enum_declaration] = STATE(1956), + [sym_class_declaration] = STATE(1956), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1956), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1956), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1956), + [sym_unset_statement] = STATE(1956), + [sym_declare_statement] = STATE(1956), + [sym_try_statement] = STATE(1956), + [sym_goto_statement] = STATE(1956), + [sym_continue_statement] = STATE(1956), + [sym_break_statement] = STATE(1956), + [sym_return_statement] = STATE(1956), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1956), + [sym_do_statement] = STATE(1956), + [sym_for_statement] = STATE(1956), + [sym_foreach_statement] = STATE(1956), + [sym_if_statement] = STATE(1956), + [sym_colon_block] = STATE(2425), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1956), + [sym_compound_statement] = STATE(1956), + [sym_named_label_statement] = STATE(1956), + [sym_expression_statement] = STATE(1956), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(377), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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(409), + }, + [18] = { + [sym_empty_statement] = STATE(549), + [sym_function_static_declaration] = STATE(549), + [sym_global_declaration] = STATE(549), + [sym_namespace_definition] = STATE(549), + [sym_namespace_use_declaration] = STATE(549), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_class_declaration] = STATE(549), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(549), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(549), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(549), + [sym_unset_statement] = STATE(549), + [sym_declare_statement] = STATE(549), + [sym_try_statement] = STATE(549), + [sym_goto_statement] = STATE(549), + [sym_continue_statement] = STATE(549), + [sym_break_statement] = STATE(549), + [sym_return_statement] = STATE(549), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(549), + [sym_do_statement] = STATE(549), + [sym_for_statement] = STATE(549), + [sym_foreach_statement] = STATE(549), + [sym_if_statement] = STATE(549), + [sym_colon_block] = STATE(2606), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(549), + [sym_compound_statement] = STATE(549), + [sym_named_label_statement] = STATE(549), + [sym_expression_statement] = STATE(549), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(419), + [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(377), + [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(421), + }, + [19] = { + [sym_empty_statement] = STATE(513), + [sym_function_static_declaration] = STATE(513), + [sym_global_declaration] = STATE(513), + [sym_namespace_definition] = STATE(513), + [sym_namespace_use_declaration] = STATE(513), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(513), + [sym_interface_declaration] = STATE(513), + [sym_enum_declaration] = STATE(513), + [sym_class_declaration] = STATE(513), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(513), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(513), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(513), + [sym_unset_statement] = STATE(513), + [sym_declare_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_foreach_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(513), + [sym_compound_statement] = STATE(513), + [sym_named_label_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + [sym__automatic_semicolon] = ACTIONS(437), + }, + [20] = { + [sym_empty_statement] = STATE(513), + [sym_function_static_declaration] = STATE(513), + [sym_global_declaration] = STATE(513), + [sym_namespace_definition] = STATE(513), + [sym_namespace_use_declaration] = STATE(513), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(513), + [sym_interface_declaration] = STATE(513), + [sym_enum_declaration] = STATE(513), + [sym_class_declaration] = STATE(513), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(513), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(513), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(513), + [sym_unset_statement] = STATE(513), + [sym_declare_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_foreach_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(513), + [sym_compound_statement] = STATE(513), + [sym_named_label_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(439), + [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), + }, + [22] = { + [sym_empty_statement] = STATE(1929), + [sym_function_static_declaration] = STATE(1929), + [sym_global_declaration] = STATE(1929), + [sym_namespace_definition] = STATE(1929), + [sym_namespace_use_declaration] = STATE(1929), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1929), + [sym_interface_declaration] = STATE(1929), + [sym_enum_declaration] = STATE(1929), + [sym_class_declaration] = STATE(1929), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1929), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1929), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1929), + [sym_unset_statement] = STATE(1929), + [sym_declare_statement] = STATE(1929), + [sym_try_statement] = STATE(1929), + [sym_goto_statement] = STATE(1929), + [sym_continue_statement] = STATE(1929), + [sym_break_statement] = STATE(1929), + [sym_return_statement] = STATE(1929), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1929), + [sym_do_statement] = STATE(1929), + [sym_for_statement] = STATE(1929), + [sym_foreach_statement] = STATE(1929), + [sym_if_statement] = STATE(1929), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1929), + [sym_compound_statement] = STATE(1929), + [sym_named_label_statement] = STATE(1929), + [sym_expression_statement] = STATE(1929), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(443), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(445), + }, + [23] = { + [sym_empty_statement] = STATE(424), + [sym_function_static_declaration] = STATE(424), + [sym_global_declaration] = STATE(424), + [sym_namespace_definition] = STATE(424), + [sym_namespace_use_declaration] = STATE(424), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(424), + [sym_interface_declaration] = STATE(424), + [sym_enum_declaration] = STATE(424), + [sym_class_declaration] = STATE(424), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(424), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(424), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(424), + [sym_unset_statement] = STATE(424), + [sym_declare_statement] = STATE(424), + [sym_try_statement] = STATE(424), + [sym_goto_statement] = STATE(424), + [sym_continue_statement] = STATE(424), + [sym_break_statement] = STATE(424), + [sym_return_statement] = STATE(424), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(424), + [sym_do_statement] = STATE(424), + [sym_for_statement] = STATE(424), + [sym_foreach_statement] = STATE(424), + [sym_if_statement] = STATE(424), + [sym_colon_block] = STATE(1595), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(424), + [sym_compound_statement] = STATE(424), + [sym_named_label_statement] = STATE(424), + [sym_expression_statement] = STATE(424), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(447), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + }, + [24] = { + [sym_empty_statement] = STATE(1965), + [sym_function_static_declaration] = STATE(1965), + [sym_global_declaration] = STATE(1965), + [sym_namespace_definition] = STATE(1965), + [sym_namespace_use_declaration] = STATE(1965), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1965), + [sym_interface_declaration] = STATE(1965), + [sym_enum_declaration] = STATE(1965), + [sym_class_declaration] = STATE(1965), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1965), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1965), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1965), + [sym_unset_statement] = STATE(1965), + [sym_declare_statement] = STATE(1965), + [sym_try_statement] = STATE(1965), + [sym_goto_statement] = STATE(1965), + [sym_continue_statement] = STATE(1965), + [sym_break_statement] = STATE(1965), + [sym_return_statement] = STATE(1965), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1965), + [sym_do_statement] = STATE(1965), + [sym_for_statement] = STATE(1965), + [sym_foreach_statement] = STATE(1965), + [sym_if_statement] = STATE(1965), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1965), + [sym_compound_statement] = STATE(1965), + [sym_named_label_statement] = STATE(1965), + [sym_expression_statement] = STATE(1965), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(449), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(451), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(453), + }, + [25] = { + [sym_empty_statement] = STATE(2007), + [sym_function_static_declaration] = STATE(2007), + [sym_global_declaration] = STATE(2007), + [sym_namespace_definition] = STATE(2007), + [sym_namespace_use_declaration] = STATE(2007), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2007), + [sym_interface_declaration] = STATE(2007), + [sym_enum_declaration] = STATE(2007), + [sym_class_declaration] = STATE(2007), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2007), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2007), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2007), + [sym_unset_statement] = STATE(2007), + [sym_declare_statement] = STATE(2007), + [sym_try_statement] = STATE(2007), + [sym_goto_statement] = STATE(2007), + [sym_continue_statement] = STATE(2007), + [sym_break_statement] = STATE(2007), + [sym_return_statement] = STATE(2007), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2007), + [sym_do_statement] = STATE(2007), + [sym_for_statement] = STATE(2007), + [sym_foreach_statement] = STATE(2007), + [sym_if_statement] = STATE(2007), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2007), + [sym_compound_statement] = STATE(2007), + [sym_named_label_statement] = STATE(2007), + [sym_expression_statement] = STATE(2007), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(455), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(457), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(459), + }, + [26] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(461), + [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), + }, + [27] = { + [sym_empty_statement] = STATE(480), + [sym_function_static_declaration] = STATE(480), + [sym_global_declaration] = STATE(480), + [sym_namespace_definition] = STATE(480), + [sym_namespace_use_declaration] = STATE(480), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(480), + [sym_interface_declaration] = STATE(480), + [sym_enum_declaration] = STATE(480), + [sym_class_declaration] = STATE(480), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(480), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(480), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(480), + [sym_unset_statement] = STATE(480), + [sym_declare_statement] = STATE(480), + [sym_try_statement] = STATE(480), + [sym_goto_statement] = STATE(480), + [sym_continue_statement] = STATE(480), + [sym_break_statement] = STATE(480), + [sym_return_statement] = STATE(480), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(480), + [sym_do_statement] = STATE(480), + [sym_for_statement] = STATE(480), + [sym_foreach_statement] = STATE(480), + [sym_if_statement] = STATE(480), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(480), + [sym_compound_statement] = STATE(480), + [sym_named_label_statement] = STATE(480), + [sym_expression_statement] = STATE(480), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(463), + [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(465), + [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(467), + }, + [28] = { + [sym_empty_statement] = STATE(1924), + [sym_function_static_declaration] = STATE(1924), + [sym_global_declaration] = STATE(1924), + [sym_namespace_definition] = STATE(1924), + [sym_namespace_use_declaration] = STATE(1924), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1924), + [sym_interface_declaration] = STATE(1924), + [sym_enum_declaration] = STATE(1924), + [sym_class_declaration] = STATE(1924), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1924), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1924), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1924), + [sym_unset_statement] = STATE(1924), + [sym_declare_statement] = STATE(1924), + [sym_try_statement] = STATE(1924), + [sym_goto_statement] = STATE(1924), + [sym_continue_statement] = STATE(1924), + [sym_break_statement] = STATE(1924), + [sym_return_statement] = STATE(1924), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1924), + [sym_do_statement] = STATE(1924), + [sym_for_statement] = STATE(1924), + [sym_foreach_statement] = STATE(1924), + [sym_if_statement] = STATE(1924), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1924), + [sym_compound_statement] = STATE(1924), + [sym_named_label_statement] = STATE(1924), + [sym_expression_statement] = STATE(1924), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(469), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(471), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(473), + }, + [29] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(475), + [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(59), + [sym_function_static_declaration] = STATE(59), + [sym_global_declaration] = STATE(59), + [sym_namespace_definition] = STATE(59), + [sym_namespace_use_declaration] = STATE(59), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(59), + [sym_interface_declaration] = STATE(59), + [sym_enum_declaration] = STATE(59), + [sym_class_declaration] = STATE(59), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(59), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(59), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(59), + [sym_unset_statement] = STATE(59), + [sym_declare_statement] = STATE(59), + [sym_try_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_foreach_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(59), + [sym_compound_statement] = STATE(59), + [sym_named_label_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(477), + [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), + }, + [31] = { + [sym_empty_statement] = STATE(35), + [sym_function_static_declaration] = STATE(35), + [sym_global_declaration] = STATE(35), + [sym_namespace_definition] = STATE(35), + [sym_namespace_use_declaration] = STATE(35), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(35), + [sym_interface_declaration] = STATE(35), + [sym_enum_declaration] = STATE(35), + [sym_class_declaration] = STATE(35), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(35), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(35), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(35), + [sym_unset_statement] = STATE(35), + [sym_declare_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_foreach_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(35), + [sym_compound_statement] = STATE(35), + [sym_named_label_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(35), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(475), + [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(2023), + [sym_function_static_declaration] = STATE(2023), + [sym_global_declaration] = STATE(2023), + [sym_namespace_definition] = STATE(2023), + [sym_namespace_use_declaration] = STATE(2023), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2023), + [sym_interface_declaration] = STATE(2023), + [sym_enum_declaration] = STATE(2023), + [sym_class_declaration] = STATE(2023), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2023), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2023), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2023), + [sym_unset_statement] = STATE(2023), + [sym_declare_statement] = STATE(2023), + [sym_try_statement] = STATE(2023), + [sym_goto_statement] = STATE(2023), + [sym_continue_statement] = STATE(2023), + [sym_break_statement] = STATE(2023), + [sym_return_statement] = STATE(2023), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2023), + [sym_do_statement] = STATE(2023), + [sym_for_statement] = STATE(2023), + [sym_foreach_statement] = STATE(2023), + [sym_if_statement] = STATE(2023), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2023), + [sym_compound_statement] = STATE(2023), + [sym_named_label_statement] = STATE(2023), + [sym_expression_statement] = STATE(2023), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(479), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(481), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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), + }, + [33] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(500), + [sym_interface_declaration] = STATE(500), + [sym_enum_declaration] = STATE(500), + [sym_class_declaration] = STATE(500), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(500), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(500), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(500), + [sym_compound_statement] = STATE(500), + [sym_named_label_statement] = STATE(500), + [sym_expression_statement] = STATE(500), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(485), + [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(487), + [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(489), + }, + [34] = { + [sym_empty_statement] = STATE(2023), + [sym_function_static_declaration] = STATE(2023), + [sym_global_declaration] = STATE(2023), + [sym_namespace_definition] = STATE(2023), + [sym_namespace_use_declaration] = STATE(2023), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2023), + [sym_interface_declaration] = STATE(2023), + [sym_enum_declaration] = STATE(2023), + [sym_class_declaration] = STATE(2023), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2023), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2023), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2023), + [sym_unset_statement] = STATE(2023), + [sym_declare_statement] = STATE(2023), + [sym_try_statement] = STATE(2023), + [sym_goto_statement] = STATE(2023), + [sym_continue_statement] = STATE(2023), + [sym_break_statement] = STATE(2023), + [sym_return_statement] = STATE(2023), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2023), + [sym_do_statement] = STATE(2023), + [sym_for_statement] = STATE(2023), + [sym_foreach_statement] = STATE(2023), + [sym_if_statement] = STATE(2023), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2023), + [sym_compound_statement] = STATE(2023), + [sym_named_label_statement] = STATE(2023), + [sym_expression_statement] = STATE(2023), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(479), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(481), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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), + }, + [35] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(491), + [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), + }, + [36] = { + [sym_empty_statement] = STATE(44), + [sym_function_static_declaration] = STATE(44), + [sym_global_declaration] = STATE(44), + [sym_namespace_definition] = STATE(44), + [sym_namespace_use_declaration] = STATE(44), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(44), + [sym_interface_declaration] = STATE(44), + [sym_enum_declaration] = STATE(44), + [sym_class_declaration] = STATE(44), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(44), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(44), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(44), + [sym_unset_statement] = STATE(44), + [sym_declare_statement] = STATE(44), + [sym_try_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_foreach_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(44), + [sym_compound_statement] = STATE(44), + [sym_named_label_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(44), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(491), + [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(480), + [sym_function_static_declaration] = STATE(480), + [sym_global_declaration] = STATE(480), + [sym_namespace_definition] = STATE(480), + [sym_namespace_use_declaration] = STATE(480), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(480), + [sym_interface_declaration] = STATE(480), + [sym_enum_declaration] = STATE(480), + [sym_class_declaration] = STATE(480), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(480), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(480), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(480), + [sym_unset_statement] = STATE(480), + [sym_declare_statement] = STATE(480), + [sym_try_statement] = STATE(480), + [sym_goto_statement] = STATE(480), + [sym_continue_statement] = STATE(480), + [sym_break_statement] = STATE(480), + [sym_return_statement] = STATE(480), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(480), + [sym_do_statement] = STATE(480), + [sym_for_statement] = STATE(480), + [sym_foreach_statement] = STATE(480), + [sym_if_statement] = STATE(480), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(480), + [sym_compound_statement] = STATE(480), + [sym_named_label_statement] = STATE(480), + [sym_expression_statement] = STATE(480), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(463), + [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(465), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + [sym__automatic_semicolon] = ACTIONS(467), + }, + [38] = { + [sym_empty_statement] = STATE(40), + [sym_function_static_declaration] = STATE(40), + [sym_global_declaration] = STATE(40), + [sym_namespace_definition] = STATE(40), + [sym_namespace_use_declaration] = STATE(40), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(40), + [sym_interface_declaration] = STATE(40), + [sym_enum_declaration] = STATE(40), + [sym_class_declaration] = STATE(40), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(40), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(40), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(40), + [sym_unset_statement] = STATE(40), + [sym_declare_statement] = STATE(40), + [sym_try_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_foreach_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(40), + [sym_compound_statement] = STATE(40), + [sym_named_label_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(493), + [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), + }, + [39] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(52), + [sym_interface_declaration] = STATE(52), + [sym_enum_declaration] = STATE(52), + [sym_class_declaration] = STATE(52), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(52), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(52), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(52), + [sym_compound_statement] = STATE(52), + [sym_named_label_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(52), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(495), + [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), + }, + [40] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(497), + [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), + }, + [41] = { + [sym_empty_statement] = STATE(53), + [sym_function_static_declaration] = STATE(53), + [sym_global_declaration] = STATE(53), + [sym_namespace_definition] = STATE(53), + [sym_namespace_use_declaration] = STATE(53), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(53), + [sym_interface_declaration] = STATE(53), + [sym_enum_declaration] = STATE(53), + [sym_class_declaration] = STATE(53), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(53), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(53), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(53), + [sym_unset_statement] = STATE(53), + [sym_declare_statement] = STATE(53), + [sym_try_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_foreach_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(53), + [sym_compound_statement] = STATE(53), + [sym_named_label_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(53), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(499), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(539), + [sym_interface_declaration] = STATE(539), + [sym_enum_declaration] = STATE(539), + [sym_class_declaration] = STATE(539), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(539), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(539), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(539), + [sym_compound_statement] = STATE(539), + [sym_named_label_statement] = STATE(539), + [sym_expression_statement] = STATE(539), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(501), + [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(503), + [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(505), + }, + [43] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(539), + [sym_interface_declaration] = STATE(539), + [sym_enum_declaration] = STATE(539), + [sym_class_declaration] = STATE(539), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(539), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(539), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(539), + [sym_compound_statement] = STATE(539), + [sym_named_label_statement] = STATE(539), + [sym_expression_statement] = STATE(539), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(501), + [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(503), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + [sym__automatic_semicolon] = ACTIONS(505), + }, + [44] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(507), + [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(553), + [sym_function_static_declaration] = STATE(553), + [sym_global_declaration] = STATE(553), + [sym_namespace_definition] = STATE(553), + [sym_namespace_use_declaration] = STATE(553), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(553), + [sym_interface_declaration] = STATE(553), + [sym_enum_declaration] = STATE(553), + [sym_class_declaration] = STATE(553), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(553), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(553), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(553), + [sym_unset_statement] = STATE(553), + [sym_declare_statement] = STATE(553), + [sym_try_statement] = STATE(553), + [sym_goto_statement] = STATE(553), + [sym_continue_statement] = STATE(553), + [sym_break_statement] = STATE(553), + [sym_return_statement] = STATE(553), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(553), + [sym_do_statement] = STATE(553), + [sym_for_statement] = STATE(553), + [sym_foreach_statement] = STATE(553), + [sym_if_statement] = STATE(553), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(553), + [sym_compound_statement] = STATE(553), + [sym_named_label_statement] = STATE(553), + [sym_expression_statement] = STATE(553), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(509), + [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(511), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + [sym__automatic_semicolon] = ACTIONS(513), + }, + [46] = { + [sym_empty_statement] = STATE(553), + [sym_function_static_declaration] = STATE(553), + [sym_global_declaration] = STATE(553), + [sym_namespace_definition] = STATE(553), + [sym_namespace_use_declaration] = STATE(553), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(553), + [sym_interface_declaration] = STATE(553), + [sym_enum_declaration] = STATE(553), + [sym_class_declaration] = STATE(553), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(553), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(553), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(553), + [sym_unset_statement] = STATE(553), + [sym_declare_statement] = STATE(553), + [sym_try_statement] = STATE(553), + [sym_goto_statement] = STATE(553), + [sym_continue_statement] = STATE(553), + [sym_break_statement] = STATE(553), + [sym_return_statement] = STATE(553), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(553), + [sym_do_statement] = STATE(553), + [sym_for_statement] = STATE(553), + [sym_foreach_statement] = STATE(553), + [sym_if_statement] = STATE(553), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(553), + [sym_compound_statement] = STATE(553), + [sym_named_label_statement] = STATE(553), + [sym_expression_statement] = STATE(553), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(509), + [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(511), + [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(513), + }, + [47] = { + [sym_empty_statement] = STATE(55), + [sym_function_static_declaration] = STATE(55), + [sym_global_declaration] = STATE(55), + [sym_namespace_definition] = STATE(55), + [sym_namespace_use_declaration] = STATE(55), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(55), + [sym_interface_declaration] = STATE(55), + [sym_enum_declaration] = STATE(55), + [sym_class_declaration] = STATE(55), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(55), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(55), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(55), + [sym_unset_statement] = STATE(55), + [sym_declare_statement] = STATE(55), + [sym_try_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_foreach_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(55), + [sym_compound_statement] = STATE(55), + [sym_named_label_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(500), + [sym_interface_declaration] = STATE(500), + [sym_enum_declaration] = STATE(500), + [sym_class_declaration] = STATE(500), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(500), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(500), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(500), + [sym_compound_statement] = STATE(500), + [sym_named_label_statement] = STATE(500), + [sym_expression_statement] = STATE(500), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(485), + [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(487), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + [sym__automatic_semicolon] = ACTIONS(489), + }, + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(517), + [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(26), + [sym_function_static_declaration] = STATE(26), + [sym_global_declaration] = STATE(26), + [sym_namespace_definition] = STATE(26), + [sym_namespace_use_declaration] = STATE(26), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(26), + [sym_interface_declaration] = STATE(26), + [sym_enum_declaration] = STATE(26), + [sym_class_declaration] = STATE(26), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(26), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(26), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(26), + [sym_unset_statement] = STATE(26), + [sym_declare_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_foreach_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(26), + [sym_compound_statement] = STATE(26), + [sym_named_label_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [51] = { + [sym_empty_statement] = STATE(29), + [sym_function_static_declaration] = STATE(29), + [sym_global_declaration] = STATE(29), + [sym_namespace_definition] = STATE(29), + [sym_namespace_use_declaration] = STATE(29), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(29), + [sym_interface_declaration] = STATE(29), + [sym_enum_declaration] = STATE(29), + [sym_class_declaration] = STATE(29), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(29), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(29), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(29), + [sym_unset_statement] = STATE(29), + [sym_declare_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_foreach_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(29), + [sym_compound_statement] = STATE(29), + [sym_named_label_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(521), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(523), + [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), + }, + [53] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(525), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(527), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(521), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(58), + [sym_interface_declaration] = STATE(58), + [sym_enum_declaration] = STATE(58), + [sym_class_declaration] = STATE(58), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(58), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(58), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(58), + [sym_compound_statement] = STATE(58), + [sym_named_label_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(58), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(525), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(21), + [sym_interface_declaration] = STATE(21), + [sym_enum_declaration] = STATE(21), + [sym_class_declaration] = STATE(21), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(21), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(21), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(21), + [sym_compound_statement] = STATE(21), + [sym_named_label_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(529), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(531), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [60] = { + [sym_empty_statement] = STATE(2056), + [sym_function_static_declaration] = STATE(2056), + [sym_global_declaration] = STATE(2056), + [sym_namespace_definition] = STATE(2056), + [sym_namespace_use_declaration] = STATE(2056), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2056), + [sym_interface_declaration] = STATE(2056), + [sym_enum_declaration] = STATE(2056), + [sym_class_declaration] = STATE(2056), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2056), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2056), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2056), + [sym_unset_statement] = STATE(2056), + [sym_declare_statement] = STATE(2056), + [sym_try_statement] = STATE(2056), + [sym_goto_statement] = STATE(2056), + [sym_continue_statement] = STATE(2056), + [sym_break_statement] = STATE(2056), + [sym_return_statement] = STATE(2056), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2056), + [sym_do_statement] = STATE(2056), + [sym_for_statement] = STATE(2056), + [sym_foreach_statement] = STATE(2056), + [sym_if_statement] = STATE(2056), + [sym_colon_block] = STATE(2473), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2056), + [sym_compound_statement] = STATE(2056), + [sym_named_label_statement] = STATE(2056), + [sym_expression_statement] = STATE(2056), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(377), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(54), + [sym_function_static_declaration] = STATE(54), + [sym_global_declaration] = STATE(54), + [sym_namespace_definition] = STATE(54), + [sym_namespace_use_declaration] = STATE(54), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(54), + [sym_interface_declaration] = STATE(54), + [sym_enum_declaration] = STATE(54), + [sym_class_declaration] = STATE(54), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(54), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(54), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(54), + [sym_unset_statement] = STATE(54), + [sym_declare_statement] = STATE(54), + [sym_try_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_foreach_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(54), + [sym_compound_statement] = STATE(54), + [sym_named_label_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(54), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [62] = { + [sym_empty_statement] = STATE(2056), + [sym_function_static_declaration] = STATE(2056), + [sym_global_declaration] = STATE(2056), + [sym_namespace_definition] = STATE(2056), + [sym_namespace_use_declaration] = STATE(2056), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2056), + [sym_interface_declaration] = STATE(2056), + [sym_enum_declaration] = STATE(2056), + [sym_class_declaration] = STATE(2056), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2056), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2056), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2056), + [sym_unset_statement] = STATE(2056), + [sym_declare_statement] = STATE(2056), + [sym_try_statement] = STATE(2056), + [sym_goto_statement] = STATE(2056), + [sym_continue_statement] = STATE(2056), + [sym_break_statement] = STATE(2056), + [sym_return_statement] = STATE(2056), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2056), + [sym_do_statement] = STATE(2056), + [sym_for_statement] = STATE(2056), + [sym_foreach_statement] = STATE(2056), + [sym_if_statement] = STATE(2056), + [sym_colon_block] = STATE(2473), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2056), + [sym_compound_statement] = STATE(2056), + [sym_named_label_statement] = STATE(2056), + [sym_expression_statement] = STATE(2056), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(377), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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), + }, + [63] = { + [sym_empty_statement] = STATE(421), + [sym_function_static_declaration] = STATE(421), + [sym_global_declaration] = STATE(421), + [sym_namespace_definition] = STATE(421), + [sym_namespace_use_declaration] = STATE(421), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(421), + [sym_interface_declaration] = STATE(421), + [sym_enum_declaration] = STATE(421), + [sym_class_declaration] = STATE(421), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(421), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(421), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(421), + [sym_unset_statement] = STATE(421), + [sym_declare_statement] = STATE(421), + [sym_try_statement] = STATE(421), + [sym_goto_statement] = STATE(421), + [sym_continue_statement] = STATE(421), + [sym_break_statement] = STATE(421), + [sym_return_statement] = STATE(421), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(421), + [sym_do_statement] = STATE(421), + [sym_for_statement] = STATE(421), + [sym_foreach_statement] = STATE(421), + [sym_if_statement] = STATE(421), + [sym_colon_block] = STATE(1595), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(421), + [sym_compound_statement] = STATE(421), + [sym_named_label_statement] = STATE(421), + [sym_expression_statement] = STATE(421), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(447), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + }, + [64] = { + [sym_empty_statement] = STATE(2007), + [sym_function_static_declaration] = STATE(2007), + [sym_global_declaration] = STATE(2007), + [sym_namespace_definition] = STATE(2007), + [sym_namespace_use_declaration] = STATE(2007), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2007), + [sym_interface_declaration] = STATE(2007), + [sym_enum_declaration] = STATE(2007), + [sym_class_declaration] = STATE(2007), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2007), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2007), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2007), + [sym_unset_statement] = STATE(2007), + [sym_declare_statement] = STATE(2007), + [sym_try_statement] = STATE(2007), + [sym_goto_statement] = STATE(2007), + [sym_continue_statement] = STATE(2007), + [sym_break_statement] = STATE(2007), + [sym_return_statement] = STATE(2007), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2007), + [sym_do_statement] = STATE(2007), + [sym_for_statement] = STATE(2007), + [sym_foreach_statement] = STATE(2007), + [sym_if_statement] = STATE(2007), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2007), + [sym_compound_statement] = STATE(2007), + [sym_named_label_statement] = STATE(2007), + [sym_expression_statement] = STATE(2007), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(455), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(457), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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(459), + }, + [65] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(49), + [sym_interface_declaration] = STATE(49), + [sym_enum_declaration] = STATE(49), + [sym_class_declaration] = STATE(49), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(49), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(49), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(49), + [sym_compound_statement] = STATE(49), + [sym_named_label_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(49), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(539), + [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), + }, + [66] = { + [sym_empty_statement] = STATE(473), + [sym_function_static_declaration] = STATE(473), + [sym_global_declaration] = STATE(473), + [sym_namespace_definition] = STATE(473), + [sym_namespace_use_declaration] = STATE(473), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(473), + [sym_interface_declaration] = STATE(473), + [sym_enum_declaration] = STATE(473), + [sym_class_declaration] = STATE(473), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(473), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(473), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(473), + [sym_unset_statement] = STATE(473), + [sym_declare_statement] = STATE(473), + [sym_try_statement] = STATE(473), + [sym_goto_statement] = STATE(473), + [sym_continue_statement] = STATE(473), + [sym_break_statement] = STATE(473), + [sym_return_statement] = STATE(473), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(473), + [sym_do_statement] = STATE(473), + [sym_for_statement] = STATE(473), + [sym_foreach_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_colon_block] = STATE(2448), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(473), + [sym_compound_statement] = STATE(473), + [sym_named_label_statement] = STATE(473), + [sym_expression_statement] = STATE(473), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(377), + [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), + }, + [67] = { + [sym_empty_statement] = STATE(1965), + [sym_function_static_declaration] = STATE(1965), + [sym_global_declaration] = STATE(1965), + [sym_namespace_definition] = STATE(1965), + [sym_namespace_use_declaration] = STATE(1965), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1965), + [sym_interface_declaration] = STATE(1965), + [sym_enum_declaration] = STATE(1965), + [sym_class_declaration] = STATE(1965), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1965), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1965), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1965), + [sym_unset_statement] = STATE(1965), + [sym_declare_statement] = STATE(1965), + [sym_try_statement] = STATE(1965), + [sym_goto_statement] = STATE(1965), + [sym_continue_statement] = STATE(1965), + [sym_break_statement] = STATE(1965), + [sym_return_statement] = STATE(1965), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1965), + [sym_do_statement] = STATE(1965), + [sym_for_statement] = STATE(1965), + [sym_foreach_statement] = STATE(1965), + [sym_if_statement] = STATE(1965), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1965), + [sym_compound_statement] = STATE(1965), + [sym_named_label_statement] = STATE(1965), + [sym_expression_statement] = STATE(1965), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(449), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(451), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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(453), + }, + [68] = { + [sym_empty_statement] = STATE(76), + [sym_function_static_declaration] = STATE(76), + [sym_global_declaration] = STATE(76), + [sym_namespace_definition] = STATE(76), + [sym_namespace_use_declaration] = STATE(76), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(76), + [sym_interface_declaration] = STATE(76), + [sym_enum_declaration] = STATE(76), + [sym_class_declaration] = STATE(76), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(76), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(76), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(76), + [sym_unset_statement] = STATE(76), + [sym_declare_statement] = STATE(76), + [sym_try_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_foreach_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(76), + [sym_compound_statement] = STATE(76), + [sym_named_label_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(531), + [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), + }, + [69] = { + [sym_empty_statement] = STATE(1608), + [sym_function_static_declaration] = STATE(1608), + [sym_global_declaration] = STATE(1608), + [sym_namespace_definition] = STATE(1608), + [sym_namespace_use_declaration] = STATE(1608), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1608), + [sym_interface_declaration] = STATE(1608), + [sym_enum_declaration] = STATE(1608), + [sym_class_declaration] = STATE(1608), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1608), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1608), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1608), + [sym_unset_statement] = STATE(1608), + [sym_declare_statement] = STATE(1608), + [sym_try_statement] = STATE(1608), + [sym_goto_statement] = STATE(1608), + [sym_continue_statement] = STATE(1608), + [sym_break_statement] = STATE(1608), + [sym_return_statement] = STATE(1608), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1608), + [sym_do_statement] = STATE(1608), + [sym_for_statement] = STATE(1608), + [sym_foreach_statement] = STATE(1608), + [sym_if_statement] = STATE(1608), + [sym_colon_block] = STATE(1558), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1608), + [sym_compound_statement] = STATE(1608), + [sym_named_label_statement] = STATE(1608), + [sym_expression_statement] = STATE(1608), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(447), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(541), + [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(1929), + [sym_function_static_declaration] = STATE(1929), + [sym_global_declaration] = STATE(1929), + [sym_namespace_definition] = STATE(1929), + [sym_namespace_use_declaration] = STATE(1929), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1929), + [sym_interface_declaration] = STATE(1929), + [sym_enum_declaration] = STATE(1929), + [sym_class_declaration] = STATE(1929), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1929), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1929), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1929), + [sym_unset_statement] = STATE(1929), + [sym_declare_statement] = STATE(1929), + [sym_try_statement] = STATE(1929), + [sym_goto_statement] = STATE(1929), + [sym_continue_statement] = STATE(1929), + [sym_break_statement] = STATE(1929), + [sym_return_statement] = STATE(1929), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1929), + [sym_do_statement] = STATE(1929), + [sym_for_statement] = STATE(1929), + [sym_foreach_statement] = STATE(1929), + [sym_if_statement] = STATE(1929), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1929), + [sym_compound_statement] = STATE(1929), + [sym_named_label_statement] = STATE(1929), + [sym_expression_statement] = STATE(1929), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(443), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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(445), + }, + [72] = { + [sym_empty_statement] = STATE(1924), + [sym_function_static_declaration] = STATE(1924), + [sym_global_declaration] = STATE(1924), + [sym_namespace_definition] = STATE(1924), + [sym_namespace_use_declaration] = STATE(1924), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1924), + [sym_interface_declaration] = STATE(1924), + [sym_enum_declaration] = STATE(1924), + [sym_class_declaration] = STATE(1924), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1924), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1924), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1924), + [sym_unset_statement] = STATE(1924), + [sym_declare_statement] = STATE(1924), + [sym_try_statement] = STATE(1924), + [sym_goto_statement] = STATE(1924), + [sym_continue_statement] = STATE(1924), + [sym_break_statement] = STATE(1924), + [sym_return_statement] = STATE(1924), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1924), + [sym_do_statement] = STATE(1924), + [sym_for_statement] = STATE(1924), + [sym_foreach_statement] = STATE(1924), + [sym_if_statement] = STATE(1924), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1924), + [sym_compound_statement] = STATE(1924), + [sym_named_label_statement] = STATE(1924), + [sym_expression_statement] = STATE(1924), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(469), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(471), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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(473), + }, + [73] = { + [sym_empty_statement] = STATE(1610), + [sym_function_static_declaration] = STATE(1610), + [sym_global_declaration] = STATE(1610), + [sym_namespace_definition] = STATE(1610), + [sym_namespace_use_declaration] = STATE(1610), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1610), + [sym_interface_declaration] = STATE(1610), + [sym_enum_declaration] = STATE(1610), + [sym_class_declaration] = STATE(1610), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1610), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1610), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(1610), + [sym_unset_statement] = STATE(1610), + [sym_declare_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_goto_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_foreach_statement] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_colon_block] = STATE(1558), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(1610), + [sym_compound_statement] = STATE(1610), + [sym_named_label_statement] = STATE(1610), + [sym_expression_statement] = STATE(1610), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(447), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(70), + [sym_interface_declaration] = STATE(70), + [sym_enum_declaration] = STATE(70), + [sym_class_declaration] = STATE(70), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(70), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(70), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(70), + [sym_compound_statement] = STATE(70), + [sym_named_label_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(70), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(543), + [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), + }, + [75] = { + [sym_empty_statement] = STATE(473), + [sym_function_static_declaration] = STATE(473), + [sym_global_declaration] = STATE(473), + [sym_namespace_definition] = STATE(473), + [sym_namespace_use_declaration] = STATE(473), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(473), + [sym_interface_declaration] = STATE(473), + [sym_enum_declaration] = STATE(473), + [sym_class_declaration] = STATE(473), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(473), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(473), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(473), + [sym_unset_statement] = STATE(473), + [sym_declare_statement] = STATE(473), + [sym_try_statement] = STATE(473), + [sym_goto_statement] = STATE(473), + [sym_continue_statement] = STATE(473), + [sym_break_statement] = STATE(473), + [sym_return_statement] = STATE(473), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(473), + [sym_do_statement] = STATE(473), + [sym_for_statement] = STATE(473), + [sym_foreach_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_colon_block] = STATE(2448), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(473), + [sym_compound_statement] = STATE(473), + [sym_named_label_statement] = STATE(473), + [sym_expression_statement] = STATE(473), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(377), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + }, + [76] = { + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(543), + [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(497), + [sym_function_static_declaration] = STATE(497), + [sym_global_declaration] = STATE(497), + [sym_namespace_definition] = STATE(497), + [sym_namespace_use_declaration] = STATE(497), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(497), + [sym_interface_declaration] = STATE(497), + [sym_enum_declaration] = STATE(497), + [sym_class_declaration] = STATE(497), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(497), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(497), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(497), + [sym_unset_statement] = STATE(497), + [sym_declare_statement] = STATE(497), + [sym_try_statement] = STATE(497), + [sym_goto_statement] = STATE(497), + [sym_continue_statement] = STATE(497), + [sym_break_statement] = STATE(497), + [sym_return_statement] = STATE(497), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(497), + [sym_do_statement] = STATE(497), + [sym_for_statement] = STATE(497), + [sym_foreach_statement] = STATE(497), + [sym_if_statement] = STATE(497), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(497), + [sym_compound_statement] = STATE(497), + [sym_named_label_statement] = STATE(497), + [sym_expression_statement] = STATE(497), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [78] = { + [sym_empty_statement] = STATE(2541), + [sym_function_static_declaration] = STATE(2541), + [sym_global_declaration] = STATE(2541), + [sym_namespace_definition] = STATE(2541), + [sym_namespace_use_declaration] = STATE(2541), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2541), + [sym_interface_declaration] = STATE(2541), + [sym_enum_declaration] = STATE(2541), + [sym_class_declaration] = STATE(2541), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2541), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2541), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2541), + [sym_unset_statement] = STATE(2541), + [sym_declare_statement] = STATE(2541), + [sym_try_statement] = STATE(2541), + [sym_goto_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_return_statement] = STATE(2541), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2541), + [sym_do_statement] = STATE(2541), + [sym_for_statement] = STATE(2541), + [sym_foreach_statement] = STATE(2541), + [sym_if_statement] = STATE(2541), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2541), + [sym_compound_statement] = STATE(2541), + [sym_named_label_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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(2005), + [sym_function_static_declaration] = STATE(2005), + [sym_global_declaration] = STATE(2005), + [sym_namespace_definition] = STATE(2005), + [sym_namespace_use_declaration] = STATE(2005), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2005), + [sym_interface_declaration] = STATE(2005), + [sym_enum_declaration] = STATE(2005), + [sym_class_declaration] = STATE(2005), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2005), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2005), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2005), + [sym_unset_statement] = STATE(2005), + [sym_declare_statement] = STATE(2005), + [sym_try_statement] = STATE(2005), + [sym_goto_statement] = STATE(2005), + [sym_continue_statement] = STATE(2005), + [sym_break_statement] = STATE(2005), + [sym_return_statement] = STATE(2005), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2005), + [sym_do_statement] = STATE(2005), + [sym_for_statement] = STATE(2005), + [sym_foreach_statement] = STATE(2005), + [sym_if_statement] = STATE(2005), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2005), + [sym_compound_statement] = STATE(2005), + [sym_named_label_statement] = STATE(2005), + [sym_expression_statement] = STATE(2005), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(2510), + [sym_function_static_declaration] = STATE(2510), + [sym_global_declaration] = STATE(2510), + [sym_namespace_definition] = STATE(2510), + [sym_namespace_use_declaration] = STATE(2510), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2510), + [sym_interface_declaration] = STATE(2510), + [sym_enum_declaration] = STATE(2510), + [sym_class_declaration] = STATE(2510), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2510), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2510), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2510), + [sym_unset_statement] = STATE(2510), + [sym_declare_statement] = STATE(2510), + [sym_try_statement] = STATE(2510), + [sym_goto_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_return_statement] = STATE(2510), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2510), + [sym_do_statement] = STATE(2510), + [sym_for_statement] = STATE(2510), + [sym_foreach_statement] = STATE(2510), + [sym_if_statement] = STATE(2510), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2510), + [sym_compound_statement] = STATE(2510), + [sym_named_label_statement] = STATE(2510), + [sym_expression_statement] = STATE(2510), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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(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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(488), + [sym_interface_declaration] = STATE(488), + [sym_enum_declaration] = STATE(488), + [sym_class_declaration] = STATE(488), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(488), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(488), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [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(1126), + [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(1063), + [sym_switch_statement] = STATE(488), + [sym_compound_statement] = STATE(488), + [sym_named_label_statement] = STATE(488), + [sym_expression_statement] = STATE(488), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + }, + [82] = { + [sym_empty_statement] = STATE(2019), + [sym_function_static_declaration] = STATE(2019), + [sym_global_declaration] = STATE(2019), + [sym_namespace_definition] = STATE(2019), + [sym_namespace_use_declaration] = STATE(2019), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2019), + [sym_interface_declaration] = STATE(2019), + [sym_enum_declaration] = STATE(2019), + [sym_class_declaration] = STATE(2019), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2019), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2019), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2019), + [sym_unset_statement] = STATE(2019), + [sym_declare_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_goto_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_break_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2019), + [sym_compound_statement] = STATE(2019), + [sym_named_label_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(385), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(397), + [aux_sym_do_statement_token1] = ACTIONS(399), + [aux_sym_for_statement_token1] = ACTIONS(401), + [aux_sym_foreach_statement_token1] = ACTIONS(403), + [aux_sym_if_statement_token1] = ACTIONS(405), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(407), + [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(497), + [sym_function_static_declaration] = STATE(497), + [sym_global_declaration] = STATE(497), + [sym_namespace_definition] = STATE(497), + [sym_namespace_use_declaration] = STATE(497), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(497), + [sym_interface_declaration] = STATE(497), + [sym_enum_declaration] = STATE(497), + [sym_class_declaration] = STATE(497), + [sym_final_modifier] = STATE(1855), + [sym_abstract_modifier] = STATE(1855), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(497), + [sym__const_declaration] = STATE(479), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(497), + [sym__function_definition_header] = STATE(2151), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(497), + [sym_unset_statement] = STATE(497), + [sym_declare_statement] = STATE(497), + [sym_try_statement] = STATE(497), + [sym_goto_statement] = STATE(497), + [sym_continue_statement] = STATE(497), + [sym_break_statement] = STATE(497), + [sym_return_statement] = STATE(497), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(497), + [sym_do_statement] = STATE(497), + [sym_for_statement] = STATE(497), + [sym_foreach_statement] = STATE(497), + [sym_if_statement] = STATE(497), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(497), + [sym_compound_statement] = STATE(497), + [sym_named_label_statement] = STATE(497), + [sym_expression_statement] = STATE(497), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1376), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(328), + [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(330), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(332), + [aux_sym_foreach_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_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), + }, + [84] = { + [sym_empty_statement] = STATE(2019), + [sym_function_static_declaration] = STATE(2019), + [sym_global_declaration] = STATE(2019), + [sym_namespace_definition] = STATE(2019), + [sym_namespace_use_declaration] = STATE(2019), + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2019), + [sym_interface_declaration] = STATE(2019), + [sym_enum_declaration] = STATE(2019), + [sym_class_declaration] = STATE(2019), + [sym_final_modifier] = STATE(1870), + [sym_abstract_modifier] = STATE(1870), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2019), + [sym__const_declaration] = STATE(2083), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2019), + [sym__function_definition_header] = STATE(2283), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_echo_statement] = STATE(2019), + [sym_unset_statement] = STATE(2019), + [sym_declare_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_goto_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_break_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_throw_expression] = STATE(1126), + [sym_while_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_match_expression] = STATE(1063), + [sym_switch_statement] = STATE(2019), + [sym_compound_statement] = STATE(2019), + [sym_named_label_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1367), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(359), + [aux_sym_global_declaration_token1] = ACTIONS(361), + [aux_sym_namespace_definition_token1] = ACTIONS(363), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(365), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_trait_declaration_token1] = ACTIONS(371), + [aux_sym_interface_declaration_token1] = ACTIONS(373), + [aux_sym_enum_declaration_token1] = ACTIONS(375), + [aux_sym_class_declaration_token1] = ACTIONS(379), + [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(381), + [anon_sym_unset] = ACTIONS(383), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(387), + [aux_sym_goto_statement_token1] = ACTIONS(389), + [aux_sym_continue_statement_token1] = ACTIONS(391), + [aux_sym_break_statement_token1] = ACTIONS(393), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(395), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(399), + [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(407), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(967), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(915), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(915), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1105), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_variadic_unpacking] = STATE(1087), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_by_ref] = STATE(1087), + [sym_yield_expression] = STATE(1053), + [sym_array_element_initializer] = STATE(1107), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(915), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2445), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1286), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2479), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2472), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2480), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2494), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1286), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2463), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2531), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2471), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2445), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2407), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_cast_type] = STATE(2408), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1860), + [sym__array_destructing_element] = STATE(1861), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2197), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1878), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym__array_destructing_repeat1] = STATE(1866), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1860), + [sym__array_destructing_element] = STATE(1861), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2197), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1878), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym__array_destructing_repeat1] = STATE(1866), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1860), + [sym__array_destructing_element] = STATE(1861), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2197), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1878), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym__array_destructing_repeat1] = STATE(1866), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(693), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1860), + [sym__array_destructing_element] = STATE(1861), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2197), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1862), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym__array_destructing_repeat1] = STATE(1866), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1860), + [sym__array_destructing_element] = STATE(1861), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2197), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1878), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym__array_destructing_repeat1] = STATE(1866), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_variadic_placeholder] = STATE(2429), + [sym_argument] = STATE(1895), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_variadic_placeholder] = STATE(2515), + [sym_argument] = STATE(1871), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_variadic_placeholder] = STATE(2555), + [sym_argument] = STATE(2092), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_variadic_placeholder] = STATE(2566), + [sym_argument] = STATE(2097), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_variadic_placeholder] = STATE(2542), + [sym_argument] = STATE(2051), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_variadic_placeholder] = STATE(2579), + [sym_argument] = STATE(2106), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_variadic_placeholder] = STATE(2609), + [sym_argument] = STATE(2111), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_variadic_placeholder] = STATE(2552), + [sym_argument] = STATE(2089), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1878), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1886), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1862), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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(749), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [116] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1852), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(651), + [anon_sym_RPAREN] = ACTIONS(753), + [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), + }, + [117] = { + [sym_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(755), + [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), + }, + [118] = { + [sym_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(757), + [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), + }, + [119] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym_match_condition_list] = STATE(2392), + [sym_match_conditional_expression] = STATE(1905), + [sym_match_default_expression] = STATE(1905), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(759), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(761), + [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(763), + [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), + }, + [120] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(765), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [121] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(767), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [122] = { + [sym_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(779), + [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), + }, + [128] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(781), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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), + }, + [130] = { + [sym_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [131] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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), + }, + [132] = { + [sym_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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), + }, + [133] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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), + }, + [134] = { + [sym_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(793), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [136] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym_match_condition_list] = STATE(2392), + [sym_match_conditional_expression] = STATE(1950), + [sym_match_default_expression] = STATE(1950), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(797), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(799), + [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(763), + [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), + }, + [137] = { + [sym_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(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_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(805), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [140] = { + [sym_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(807), + [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), + }, + [141] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [144] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(639), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(639), + [sym_nullsafe_member_access_expression] = STATE(639), + [sym_scoped_property_access_expression] = STATE(639), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1860), + [sym__array_destructing_element] = STATE(2380), + [sym_function_call_expression] = STATE(628), + [sym_scoped_call_expression] = STATE(628), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(628), + [sym_nullsafe_member_call_expression] = STATE(628), + [sym_subscript_expression] = STATE(628), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(628), + [sym_variable_name] = STATE(628), + [sym_by_ref] = STATE(2380), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [145] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1277), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(637), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(637), + [sym_nullsafe_member_access_expression] = STATE(637), + [sym_scoped_property_access_expression] = STATE(637), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(1745), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(1889), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym__list_destructing_repeat1] = STATE(1890), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(819), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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(821), + [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), + }, + [146] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(639), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(639), + [sym_nullsafe_member_access_expression] = STATE(639), + [sym_scoped_property_access_expression] = STATE(639), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1860), + [sym__array_destructing_element] = STATE(2380), + [sym_function_call_expression] = STATE(628), + [sym_scoped_call_expression] = STATE(628), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(628), + [sym_nullsafe_member_call_expression] = STATE(628), + [sym_subscript_expression] = STATE(628), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(628), + [sym_variable_name] = STATE(628), + [sym_by_ref] = STATE(2380), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(823), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [147] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym_match_condition_list] = STATE(2392), + [sym_match_conditional_expression] = STATE(2161), + [sym_match_default_expression] = STATE(2161), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(826), + [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(763), + [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), + }, + [148] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym_match_condition_list] = STATE(2392), + [sym_match_conditional_expression] = STATE(2161), + [sym_match_default_expression] = STATE(2161), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(828), + [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(763), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym_match_condition_list] = STATE(2392), + [sym_match_conditional_expression] = STATE(2161), + [sym_match_default_expression] = STATE(2161), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(830), + [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(763), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(907), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(907), + [sym_yield_expression] = STATE(910), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [151] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym_match_condition_list] = STATE(2392), + [sym_match_conditional_expression] = STATE(2161), + [sym_match_default_expression] = STATE(2161), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(832), + [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(763), + [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_reference_modifier] = STATE(193), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_argument] = STATE(2213), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2285), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [153] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(639), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(639), + [sym_nullsafe_member_access_expression] = STATE(639), + [sym_scoped_property_access_expression] = STATE(639), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1860), + [sym__array_destructing_element] = STATE(2380), + [sym_function_call_expression] = STATE(628), + [sym_scoped_call_expression] = STATE(628), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(628), + [sym_nullsafe_member_call_expression] = STATE(628), + [sym_subscript_expression] = STATE(628), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(628), + [sym_variable_name] = STATE(628), + [sym_by_ref] = STATE(2380), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(834), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [154] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1237), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(640), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(640), + [sym_nullsafe_member_access_expression] = STATE(640), + [sym_scoped_property_access_expression] = STATE(640), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(1939), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(630), + [sym_scoped_call_expression] = STATE(630), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(630), + [sym_nullsafe_member_call_expression] = STATE(630), + [sym_subscript_expression] = STATE(630), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(630), + [sym_variable_name] = STATE(630), + [sym_by_ref] = STATE(2348), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [155] = { + [sym_reference_modifier] = STATE(196), + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2230), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1441), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [156] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym_match_condition_list] = STATE(2392), + [sym_match_conditional_expression] = STATE(2161), + [sym_match_default_expression] = STATE(2161), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(763), + [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), + }, + [157] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_foreach_pair] = STATE(2391), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2374), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2391), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [158] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2527), + [sym_sequence_expression] = STATE(2527), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(839), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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), + }, + [159] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2540), + [sym_sequence_expression] = STATE(2540), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [160] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2446), + [sym_sequence_expression] = STATE(2446), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(843), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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), + }, + [161] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2538), + [sym_sequence_expression] = STATE(2538), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [162] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2396), + [sym_sequence_expression] = STATE(2396), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [163] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2394), + [sym_sequence_expression] = STATE(2394), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(849), + [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), + }, + [164] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_foreach_pair] = STATE(2453), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1195), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2268), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2453), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [165] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2387), + [sym_sequence_expression] = STATE(2387), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [166] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2389), + [sym_sequence_expression] = STATE(2389), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [167] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2449), + [sym_sequence_expression] = STATE(2449), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [168] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2562), + [sym_sequence_expression] = STATE(2562), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(857), + [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), + }, + [169] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2603), + [sym_sequence_expression] = STATE(2603), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [170] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2482), + [sym_sequence_expression] = STATE(2482), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [171] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2597), + [sym_sequence_expression] = STATE(2597), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [172] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2443), + [sym_sequence_expression] = STATE(2443), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(865), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_foreach_pair] = STATE(2535), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1188), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2191), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2535), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2432), + [sym_sequence_expression] = STATE(2432), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [175] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2594), + [sym_sequence_expression] = STATE(2594), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(869), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2447), + [sym_sequence_expression] = STATE(2447), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(871), + [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), + }, + [177] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2591), + [sym_sequence_expression] = STATE(2591), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [178] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2563), + [sym_sequence_expression] = STATE(2563), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(875), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2589), + [sym_sequence_expression] = STATE(2589), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [180] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_foreach_pair] = STATE(2442), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2276), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2442), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2534), + [sym_sequence_expression] = STATE(2534), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(879), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2559), + [sym_sequence_expression] = STATE(2559), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [183] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2427), + [sym_sequence_expression] = STATE(2427), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(883), + [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), + }, + [184] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__expressions] = STATE(2532), + [sym_sequence_expression] = STATE(2532), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1075), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_by_ref] = STATE(1104), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(887), + [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), + }, + [186] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym__expressions] = STATE(2228), + [sym_sequence_expression] = STATE(2228), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1181), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [187] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1216), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = 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), + [sym__automatic_semicolon] = ACTIONS(893), + }, + [190] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [191] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1205), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [192] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1215), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [193] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2331), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1442), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [194] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1139), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(930), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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), + }, + [195] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1015), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(930), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [196] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1225), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(2157), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1468), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [197] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1285), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2140), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2577), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [198] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1015), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(643), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(643), + [sym_nullsafe_member_access_expression] = STATE(643), + [sym_scoped_property_access_expression] = STATE(643), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1983), + [sym_function_call_expression] = STATE(634), + [sym_scoped_call_expression] = STATE(634), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(634), + [sym_nullsafe_member_call_expression] = STATE(634), + [sym_subscript_expression] = STATE(634), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(634), + [sym_variable_name] = STATE(634), + [sym_by_ref] = STATE(2341), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [199] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(930), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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), + }, + [200] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym__expressions] = STATE(2185), + [sym_sequence_expression] = STATE(2185), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1181), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [201] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1139), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(930), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [202] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1015), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(930), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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), + }, + [203] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1289), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(903), + [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), + }, + [204] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1146), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(905), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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), + }, + [205] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1281), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(907), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [206] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1292), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [208] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_sequence_expression] = STATE(2364), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1169), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [209] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(913), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1269), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(915), + [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), + }, + [211] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(917), + [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), + }, + [212] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(919), + [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), + }, + [213] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1262), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(921), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1041), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(923), + [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), + }, + [215] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(979), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(925), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_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), + }, + [216] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1276), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(927), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [217] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_sequence_expression] = STATE(2210), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [218] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(929), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1283), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(931), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [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), + }, + [220] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_sequence_expression] = STATE(2210), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [221] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1244), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [222] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1153), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [223] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [224] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1249), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [229] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1273), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1251), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [231] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1118), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1252), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1282), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1108), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1095), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1094), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1092), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1091), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1082), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1079), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1074), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1073), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1125), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1061), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1057), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1056), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1051), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1049), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1286), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1037), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1288), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [253] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1084), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [254] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1263), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [255] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1278), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [256] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1297), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [257] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1268), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [258] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1260), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [259] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1298), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1271), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [261] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1279), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [262] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [264] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1112), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [265] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1030), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [266] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1036), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [267] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1031), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [268] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1026), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1068), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1175), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [272] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1299), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [273] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1261), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [274] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1254), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1024), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [277] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1242), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1109), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [279] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(921), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [280] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1110), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [281] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1100), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [282] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1296), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1290), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1236), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1041), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [286] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1187), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [287] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [288] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1189), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [289] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [290] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1113), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [291] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1198), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [292] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1287), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [294] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1038), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [295] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [296] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1134), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [297] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(911), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [298] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [300] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [301] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1019), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [302] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(912), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [303] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1280), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [304] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1235), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [306] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [307] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1121), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [308] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1163), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [309] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1164), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [310] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [311] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1142), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1174), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1165), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [314] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1004), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1143), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [316] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [317] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1016), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [319] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1012), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [320] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [321] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1151), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(987), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [323] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1160), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1141), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [325] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1014), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [326] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1275), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [327] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1137), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1155), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1001), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [330] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1136), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [331] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1140), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1146), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1018), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [334] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [335] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [336] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1158), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [337] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1027), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [338] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1152), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [341] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [342] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1135), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1138), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [344] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(974), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1150), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [346] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1029), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [347] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1002), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [349] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1017), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [350] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1005), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [352] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(911), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1291), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [354] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(912), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [355] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1008), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [356] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(975), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [357] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1293), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [358] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [359] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(912), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1294), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(977), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [362] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(980), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [363] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1179), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [364] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(984), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(911), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [366] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1220), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [367] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [368] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1211), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [369] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [370] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1193), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [371] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [372] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [373] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(995), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [374] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1248), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [375] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1243), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [376] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1122), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [377] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(976), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [379] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(979), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [380] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1117), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [382] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(970), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1301), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [384] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1300), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1272), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1063), + [sym__expression] = STATE(1128), + [sym__unary_expression] = STATE(1043), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1043), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1043), + [sym_cast_variable] = STATE(636), + [sym_assignment_expression] = STATE(1053), + [sym_reference_assignment_expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_augmented_assignment_expression] = STATE(1053), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(599), + [sym_scoped_call_expression] = STATE(599), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(599), + [sym_nullsafe_member_call_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(599), + [sym_variable_name] = STATE(599), + [sym_yield_expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_include_expression] = STATE(1053), + [sym_include_once_expression] = STATE(1053), + [sym_require_expression] = STATE(1053), + [sym_require_once_expression] = STATE(1053), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [388] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1149), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [389] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(969), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(998), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [391] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1247), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1144), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [393] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(999), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1148), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [396] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1147), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [397] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1241), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1239), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(921), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [402] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(992), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(991), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [404] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1196), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [406] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1011), + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(608), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_list_literal] = STATE(2402), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [409] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(988), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [410] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1154), + [sym__expression] = STATE(1145), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [411] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(978), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [413] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(921), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [414] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(981), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(982), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [416] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(983), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [417] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(985), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [418] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(972), + [sym__expression] = STATE(1000), + [sym__unary_expression] = STATE(909), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(909), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(909), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(910), + [sym_reference_assignment_expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_augmented_assignment_expression] = STATE(910), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2437), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(910), + [sym_binary_expression] = STATE(910), + [sym_include_expression] = STATE(910), + [sym_include_once_expression] = STATE(910), + [sym_require_expression] = STATE(910), + [sym_require_once_expression] = STATE(910), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [419] = { + [sym_catch_clause] = STATE(419), + [sym_finally_clause] = STATE(419), + [aux_sym_try_statement_repeat1] = STATE(419), + [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), + }, + [420] = { + [sym_catch_clause] = STATE(419), + [sym_finally_clause] = STATE(419), + [aux_sym_try_statement_repeat1] = STATE(419), + [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), + }, + [421] = { + [sym_else_if_clause] = STATE(463), + [sym_else_clause] = STATE(548), + [aux_sym_if_statement_repeat1] = STATE(422), + [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), + }, + [422] = { + [sym_else_if_clause] = STATE(463), + [sym_else_clause] = STATE(496), + [aux_sym_if_statement_repeat1] = STATE(427), + [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), + }, + [423] = { + [sym_else_if_clause] = STATE(463), + [sym_else_clause] = STATE(496), + [aux_sym_if_statement_repeat1] = STATE(427), + [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), + }, + [424] = { + [sym_else_if_clause] = STATE(463), + [sym_else_clause] = STATE(548), + [aux_sym_if_statement_repeat1] = STATE(423), + [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), + }, + [425] = { + [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), + }, + [426] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(1114), + [sym_unary_op_expression] = STATE(1114), + [sym_exponentiation_expression] = STATE(1035), + [sym_clone_expression] = STATE(1114), + [sym__primary_expression] = STATE(1114), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1035), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(1035), + [sym_augmented_assignment_expression] = STATE(1035), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2423), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(597), + [sym_scoped_call_expression] = STATE(597), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(597), + [sym_nullsafe_member_call_expression] = STATE(597), + [sym_subscript_expression] = STATE(597), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(597), + [sym_variable_name] = STATE(597), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [427] = { + [sym_else_if_clause] = STATE(463), + [aux_sym_if_statement_repeat1] = STATE(427), + [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(983), + [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), + }, + [428] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1025), + [sym_unary_op_expression] = STATE(1025), + [sym_exponentiation_expression] = STATE(920), + [sym_clone_expression] = STATE(1025), + [sym__primary_expression] = STATE(1025), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(920), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(920), + [sym_augmented_assignment_expression] = STATE(920), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2388), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [429] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(1159), + [sym_unary_op_expression] = STATE(1159), + [sym_exponentiation_expression] = STATE(920), + [sym_clone_expression] = STATE(1159), + [sym__primary_expression] = STATE(1159), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(920), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(920), + [sym_augmented_assignment_expression] = STATE(920), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2465), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [430] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_name] = ACTIONS(988), + [anon_sym_QMARK_GT] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [aux_sym_function_static_declaration_token1] = ACTIONS(988), + [aux_sym_global_declaration_token1] = ACTIONS(988), + [aux_sym_namespace_definition_token1] = ACTIONS(988), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(988), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(988), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [aux_sym_trait_declaration_token1] = ACTIONS(988), + [aux_sym_interface_declaration_token1] = ACTIONS(988), + [aux_sym_enum_declaration_token1] = ACTIONS(988), + [aux_sym_enum_case_token1] = ACTIONS(988), + [aux_sym_class_declaration_token1] = ACTIONS(988), + [aux_sym_final_modifier_token1] = ACTIONS(988), + [aux_sym_abstract_modifier_token1] = ACTIONS(988), + [aux_sym_readonly_modifier_token1] = ACTIONS(988), + [aux_sym_visibility_modifier_token1] = ACTIONS(988), + [aux_sym_visibility_modifier_token2] = ACTIONS(988), + [aux_sym_visibility_modifier_token3] = ACTIONS(988), + [aux_sym__arrow_function_header_token1] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [aux_sym_cast_type_token1] = ACTIONS(988), + [aux_sym_echo_statement_token1] = ACTIONS(988), + [anon_sym_unset] = ACTIONS(988), + [aux_sym_declare_statement_token1] = ACTIONS(988), + [aux_sym_declare_statement_token2] = ACTIONS(988), + [sym_float] = ACTIONS(988), + [aux_sym_try_statement_token1] = ACTIONS(988), + [aux_sym_catch_clause_token1] = ACTIONS(988), + [aux_sym_finally_clause_token1] = ACTIONS(988), + [aux_sym_goto_statement_token1] = ACTIONS(988), + [aux_sym_continue_statement_token1] = ACTIONS(988), + [aux_sym_break_statement_token1] = ACTIONS(988), + [sym_integer] = ACTIONS(988), + [aux_sym_return_statement_token1] = ACTIONS(988), + [aux_sym_throw_expression_token1] = ACTIONS(988), + [aux_sym_while_statement_token1] = ACTIONS(988), + [aux_sym_while_statement_token2] = ACTIONS(988), + [aux_sym_do_statement_token1] = ACTIONS(988), + [aux_sym_for_statement_token1] = ACTIONS(988), + [aux_sym_for_statement_token2] = ACTIONS(988), + [aux_sym_foreach_statement_token1] = ACTIONS(988), + [aux_sym_foreach_statement_token2] = ACTIONS(988), + [aux_sym_if_statement_token1] = ACTIONS(988), + [aux_sym_if_statement_token2] = ACTIONS(988), + [aux_sym_else_if_clause_token1] = ACTIONS(988), + [aux_sym_else_clause_token1] = ACTIONS(988), + [aux_sym_match_expression_token1] = ACTIONS(988), + [aux_sym_match_default_expression_token1] = ACTIONS(988), + [aux_sym_switch_statement_token1] = ACTIONS(988), + [aux_sym_switch_block_token1] = ACTIONS(988), + [anon_sym_AT] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [aux_sym_clone_expression_token1] = ACTIONS(988), + [aux_sym_print_intrinsic_token1] = ACTIONS(988), + [aux_sym_object_creation_expression_token1] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(986), + [aux_sym__list_destructing_token1] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_self] = ACTIONS(988), + [anon_sym_parent] = ACTIONS(988), + [anon_sym_POUND_LBRACK] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [aux_sym_encapsed_string_token1] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [aux_sym_string_token1] = ACTIONS(986), + [anon_sym_LT_LT_LT] = ACTIONS(986), + [anon_sym_BQUOTE] = ACTIONS(986), + [sym_boolean] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(986), + [aux_sym_yield_expression_token1] = ACTIONS(988), + [aux_sym_include_expression_token1] = ACTIONS(988), + [aux_sym_include_once_expression_token1] = ACTIONS(988), + [aux_sym_require_expression_token1] = ACTIONS(988), + [aux_sym_require_once_expression_token1] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [431] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_name] = ACTIONS(992), + [anon_sym_QMARK_GT] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [aux_sym_function_static_declaration_token1] = ACTIONS(992), + [aux_sym_global_declaration_token1] = ACTIONS(992), + [aux_sym_namespace_definition_token1] = ACTIONS(992), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(992), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(992), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(992), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [aux_sym_trait_declaration_token1] = ACTIONS(992), + [aux_sym_interface_declaration_token1] = ACTIONS(992), + [aux_sym_enum_declaration_token1] = ACTIONS(992), + [aux_sym_enum_case_token1] = ACTIONS(992), + [aux_sym_class_declaration_token1] = ACTIONS(992), + [aux_sym_final_modifier_token1] = ACTIONS(992), + [aux_sym_abstract_modifier_token1] = ACTIONS(992), + [aux_sym_readonly_modifier_token1] = ACTIONS(992), + [aux_sym_visibility_modifier_token1] = ACTIONS(992), + [aux_sym_visibility_modifier_token2] = ACTIONS(992), + [aux_sym_visibility_modifier_token3] = ACTIONS(992), + [aux_sym__arrow_function_header_token1] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(990), + [aux_sym_cast_type_token1] = ACTIONS(992), + [aux_sym_echo_statement_token1] = ACTIONS(992), + [anon_sym_unset] = ACTIONS(992), + [aux_sym_declare_statement_token1] = ACTIONS(992), + [aux_sym_declare_statement_token2] = ACTIONS(992), + [sym_float] = ACTIONS(992), + [aux_sym_try_statement_token1] = ACTIONS(992), + [aux_sym_catch_clause_token1] = ACTIONS(992), + [aux_sym_finally_clause_token1] = ACTIONS(992), + [aux_sym_goto_statement_token1] = ACTIONS(992), + [aux_sym_continue_statement_token1] = ACTIONS(992), + [aux_sym_break_statement_token1] = ACTIONS(992), + [sym_integer] = ACTIONS(992), + [aux_sym_return_statement_token1] = ACTIONS(992), + [aux_sym_throw_expression_token1] = ACTIONS(992), + [aux_sym_while_statement_token1] = ACTIONS(992), + [aux_sym_while_statement_token2] = ACTIONS(992), + [aux_sym_do_statement_token1] = ACTIONS(992), + [aux_sym_for_statement_token1] = ACTIONS(992), + [aux_sym_for_statement_token2] = ACTIONS(992), + [aux_sym_foreach_statement_token1] = ACTIONS(992), + [aux_sym_foreach_statement_token2] = ACTIONS(992), + [aux_sym_if_statement_token1] = ACTIONS(992), + [aux_sym_if_statement_token2] = ACTIONS(992), + [aux_sym_else_if_clause_token1] = ACTIONS(992), + [aux_sym_else_clause_token1] = ACTIONS(992), + [aux_sym_match_expression_token1] = ACTIONS(992), + [aux_sym_match_default_expression_token1] = ACTIONS(992), + [aux_sym_switch_statement_token1] = ACTIONS(992), + [aux_sym_switch_block_token1] = ACTIONS(992), + [anon_sym_AT] = ACTIONS(990), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [aux_sym_clone_expression_token1] = ACTIONS(992), + [aux_sym_print_intrinsic_token1] = ACTIONS(992), + [aux_sym_object_creation_expression_token1] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym__list_destructing_token1] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_self] = ACTIONS(992), + [anon_sym_parent] = ACTIONS(992), + [anon_sym_POUND_LBRACK] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [aux_sym_encapsed_string_token1] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [aux_sym_string_token1] = ACTIONS(990), + [anon_sym_LT_LT_LT] = ACTIONS(990), + [anon_sym_BQUOTE] = ACTIONS(990), + [sym_boolean] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [aux_sym_yield_expression_token1] = ACTIONS(992), + [aux_sym_include_expression_token1] = ACTIONS(992), + [aux_sym_include_once_expression_token1] = ACTIONS(992), + [aux_sym_require_expression_token1] = ACTIONS(992), + [aux_sym_require_once_expression_token1] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [432] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_name] = ACTIONS(996), + [anon_sym_QMARK_GT] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [aux_sym_function_static_declaration_token1] = ACTIONS(996), + [aux_sym_global_declaration_token1] = ACTIONS(996), + [aux_sym_namespace_definition_token1] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(996), + [anon_sym_BSLASH] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [aux_sym_trait_declaration_token1] = ACTIONS(996), + [aux_sym_interface_declaration_token1] = ACTIONS(996), + [aux_sym_enum_declaration_token1] = ACTIONS(996), + [aux_sym_enum_case_token1] = ACTIONS(996), + [aux_sym_class_declaration_token1] = ACTIONS(996), + [aux_sym_final_modifier_token1] = ACTIONS(996), + [aux_sym_abstract_modifier_token1] = ACTIONS(996), + [aux_sym_readonly_modifier_token1] = ACTIONS(996), + [aux_sym_visibility_modifier_token1] = ACTIONS(996), + [aux_sym_visibility_modifier_token2] = ACTIONS(996), + [aux_sym_visibility_modifier_token3] = ACTIONS(996), + [aux_sym__arrow_function_header_token1] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [aux_sym_cast_type_token1] = ACTIONS(996), + [aux_sym_echo_statement_token1] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(996), + [aux_sym_declare_statement_token1] = ACTIONS(996), + [aux_sym_declare_statement_token2] = ACTIONS(996), + [sym_float] = ACTIONS(996), + [aux_sym_try_statement_token1] = ACTIONS(996), + [aux_sym_catch_clause_token1] = ACTIONS(996), + [aux_sym_finally_clause_token1] = ACTIONS(996), + [aux_sym_goto_statement_token1] = ACTIONS(996), + [aux_sym_continue_statement_token1] = ACTIONS(996), + [aux_sym_break_statement_token1] = ACTIONS(996), + [sym_integer] = ACTIONS(996), + [aux_sym_return_statement_token1] = ACTIONS(996), + [aux_sym_throw_expression_token1] = ACTIONS(996), + [aux_sym_while_statement_token1] = ACTIONS(996), + [aux_sym_while_statement_token2] = ACTIONS(996), + [aux_sym_do_statement_token1] = ACTIONS(996), + [aux_sym_for_statement_token1] = ACTIONS(996), + [aux_sym_for_statement_token2] = ACTIONS(996), + [aux_sym_foreach_statement_token1] = ACTIONS(996), + [aux_sym_foreach_statement_token2] = ACTIONS(996), + [aux_sym_if_statement_token1] = ACTIONS(996), + [aux_sym_if_statement_token2] = ACTIONS(996), + [aux_sym_else_if_clause_token1] = ACTIONS(996), + [aux_sym_else_clause_token1] = ACTIONS(996), + [aux_sym_match_expression_token1] = ACTIONS(996), + [aux_sym_match_default_expression_token1] = ACTIONS(996), + [aux_sym_switch_statement_token1] = ACTIONS(996), + [aux_sym_switch_block_token1] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [aux_sym_clone_expression_token1] = ACTIONS(996), + [aux_sym_print_intrinsic_token1] = ACTIONS(996), + [aux_sym_object_creation_expression_token1] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [aux_sym__list_destructing_token1] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_self] = ACTIONS(996), + [anon_sym_parent] = ACTIONS(996), + [anon_sym_POUND_LBRACK] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [aux_sym_encapsed_string_token1] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [aux_sym_string_token1] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(994), + [anon_sym_BQUOTE] = ACTIONS(994), + [sym_boolean] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [aux_sym_yield_expression_token1] = ACTIONS(996), + [aux_sym_include_expression_token1] = ACTIONS(996), + [aux_sym_include_once_expression_token1] = ACTIONS(996), + [aux_sym_require_expression_token1] = ACTIONS(996), + [aux_sym_require_once_expression_token1] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [433] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(996), + [sym_unary_op_expression] = STATE(996), + [sym_exponentiation_expression] = STATE(920), + [sym_clone_expression] = STATE(996), + [sym__primary_expression] = STATE(996), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(920), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(920), + [sym_augmented_assignment_expression] = STATE(920), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2487), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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), + }, + [434] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_name] = ACTIONS(1000), + [anon_sym_QMARK_GT] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [aux_sym_function_static_declaration_token1] = ACTIONS(1000), + [aux_sym_global_declaration_token1] = ACTIONS(1000), + [aux_sym_namespace_definition_token1] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1000), + [anon_sym_BSLASH] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [aux_sym_trait_declaration_token1] = ACTIONS(1000), + [aux_sym_interface_declaration_token1] = ACTIONS(1000), + [aux_sym_enum_declaration_token1] = ACTIONS(1000), + [aux_sym_enum_case_token1] = ACTIONS(1000), + [aux_sym_class_declaration_token1] = ACTIONS(1000), + [aux_sym_final_modifier_token1] = ACTIONS(1000), + [aux_sym_abstract_modifier_token1] = ACTIONS(1000), + [aux_sym_readonly_modifier_token1] = ACTIONS(1000), + [aux_sym_visibility_modifier_token1] = ACTIONS(1000), + [aux_sym_visibility_modifier_token2] = ACTIONS(1000), + [aux_sym_visibility_modifier_token3] = ACTIONS(1000), + [aux_sym__arrow_function_header_token1] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [aux_sym_cast_type_token1] = ACTIONS(1000), + [aux_sym_echo_statement_token1] = ACTIONS(1000), + [anon_sym_unset] = ACTIONS(1000), + [aux_sym_declare_statement_token1] = ACTIONS(1000), + [aux_sym_declare_statement_token2] = ACTIONS(1000), + [sym_float] = ACTIONS(1000), + [aux_sym_try_statement_token1] = ACTIONS(1000), + [aux_sym_catch_clause_token1] = ACTIONS(1000), + [aux_sym_finally_clause_token1] = ACTIONS(1000), + [aux_sym_goto_statement_token1] = ACTIONS(1000), + [aux_sym_continue_statement_token1] = ACTIONS(1000), + [aux_sym_break_statement_token1] = ACTIONS(1000), + [sym_integer] = ACTIONS(1000), + [aux_sym_return_statement_token1] = ACTIONS(1000), + [aux_sym_throw_expression_token1] = ACTIONS(1000), + [aux_sym_while_statement_token1] = ACTIONS(1000), + [aux_sym_while_statement_token2] = ACTIONS(1000), + [aux_sym_do_statement_token1] = ACTIONS(1000), + [aux_sym_for_statement_token1] = ACTIONS(1000), + [aux_sym_for_statement_token2] = ACTIONS(1000), + [aux_sym_foreach_statement_token1] = ACTIONS(1000), + [aux_sym_foreach_statement_token2] = ACTIONS(1000), + [aux_sym_if_statement_token1] = ACTIONS(1000), + [aux_sym_if_statement_token2] = ACTIONS(1000), + [aux_sym_else_if_clause_token1] = ACTIONS(1000), + [aux_sym_else_clause_token1] = ACTIONS(1000), + [aux_sym_match_expression_token1] = ACTIONS(1000), + [aux_sym_match_default_expression_token1] = ACTIONS(1000), + [aux_sym_switch_statement_token1] = ACTIONS(1000), + [aux_sym_switch_block_token1] = ACTIONS(1000), + [anon_sym_AT] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [aux_sym_clone_expression_token1] = ACTIONS(1000), + [aux_sym_print_intrinsic_token1] = ACTIONS(1000), + [aux_sym_object_creation_expression_token1] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [aux_sym__list_destructing_token1] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_self] = ACTIONS(1000), + [anon_sym_parent] = ACTIONS(1000), + [anon_sym_POUND_LBRACK] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [aux_sym_encapsed_string_token1] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [aux_sym_string_token1] = ACTIONS(998), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [sym_boolean] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [aux_sym_yield_expression_token1] = ACTIONS(1000), + [aux_sym_include_expression_token1] = ACTIONS(1000), + [aux_sym_include_once_expression_token1] = ACTIONS(1000), + [aux_sym_require_expression_token1] = ACTIONS(1000), + [aux_sym_require_once_expression_token1] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [435] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_name] = ACTIONS(1004), + [anon_sym_QMARK_GT] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1006), + [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(1006), + }, + [436] = { + [ts_builtin_sym_end] = ACTIONS(1008), + [sym_name] = ACTIONS(1010), + [anon_sym_QMARK_GT] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1012), + [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_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(3), + [sym__automatic_semicolon] = ACTIONS(1012), + }, + [437] = { + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_name] = ACTIONS(1016), + [anon_sym_QMARK_GT] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1018), + [aux_sym_function_static_declaration_token1] = ACTIONS(1016), + [aux_sym_global_declaration_token1] = ACTIONS(1016), + [aux_sym_namespace_definition_token1] = ACTIONS(1016), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1016), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1016), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1016), + [anon_sym_BSLASH] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [aux_sym_trait_declaration_token1] = ACTIONS(1016), + [aux_sym_interface_declaration_token1] = ACTIONS(1016), + [aux_sym_enum_declaration_token1] = ACTIONS(1016), + [aux_sym_enum_case_token1] = ACTIONS(1016), + [aux_sym_class_declaration_token1] = ACTIONS(1016), + [aux_sym_final_modifier_token1] = ACTIONS(1016), + [aux_sym_abstract_modifier_token1] = ACTIONS(1016), + [aux_sym_readonly_modifier_token1] = ACTIONS(1016), + [aux_sym_visibility_modifier_token1] = ACTIONS(1016), + [aux_sym_visibility_modifier_token2] = ACTIONS(1016), + [aux_sym_visibility_modifier_token3] = ACTIONS(1016), + [aux_sym__arrow_function_header_token1] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1014), + [aux_sym_cast_type_token1] = ACTIONS(1016), + [aux_sym_echo_statement_token1] = ACTIONS(1016), + [anon_sym_unset] = ACTIONS(1016), + [aux_sym_declare_statement_token1] = ACTIONS(1016), + [aux_sym_declare_statement_token2] = ACTIONS(1016), + [sym_float] = ACTIONS(1016), + [aux_sym_try_statement_token1] = ACTIONS(1016), + [aux_sym_goto_statement_token1] = ACTIONS(1016), + [aux_sym_continue_statement_token1] = ACTIONS(1016), + [aux_sym_break_statement_token1] = ACTIONS(1016), + [sym_integer] = ACTIONS(1016), + [aux_sym_return_statement_token1] = ACTIONS(1016), + [aux_sym_throw_expression_token1] = ACTIONS(1016), + [aux_sym_while_statement_token1] = ACTIONS(1016), + [aux_sym_while_statement_token2] = ACTIONS(1016), + [aux_sym_do_statement_token1] = ACTIONS(1016), + [aux_sym_for_statement_token1] = ACTIONS(1016), + [aux_sym_for_statement_token2] = ACTIONS(1016), + [aux_sym_foreach_statement_token1] = ACTIONS(1016), + [aux_sym_foreach_statement_token2] = ACTIONS(1016), + [aux_sym_if_statement_token1] = ACTIONS(1016), + [aux_sym_if_statement_token2] = ACTIONS(1016), + [aux_sym_else_if_clause_token1] = ACTIONS(1016), + [aux_sym_else_clause_token1] = ACTIONS(1016), + [aux_sym_match_expression_token1] = ACTIONS(1016), + [aux_sym_match_default_expression_token1] = ACTIONS(1016), + [aux_sym_switch_statement_token1] = ACTIONS(1016), + [aux_sym_switch_block_token1] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [aux_sym_clone_expression_token1] = ACTIONS(1016), + [aux_sym_print_intrinsic_token1] = ACTIONS(1016), + [aux_sym_object_creation_expression_token1] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [aux_sym__list_destructing_token1] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_self] = ACTIONS(1016), + [anon_sym_parent] = ACTIONS(1016), + [anon_sym_POUND_LBRACK] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [aux_sym_encapsed_string_token1] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [aux_sym_string_token1] = ACTIONS(1014), + [anon_sym_LT_LT_LT] = ACTIONS(1014), + [anon_sym_BQUOTE] = ACTIONS(1014), + [sym_boolean] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1014), + [aux_sym_yield_expression_token1] = ACTIONS(1016), + [aux_sym_include_expression_token1] = ACTIONS(1016), + [aux_sym_include_once_expression_token1] = ACTIONS(1016), + [aux_sym_require_expression_token1] = ACTIONS(1016), + [aux_sym_require_once_expression_token1] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1018), + }, + [438] = { + [ts_builtin_sym_end] = ACTIONS(1020), + [sym_name] = ACTIONS(1022), + [anon_sym_QMARK_GT] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1024), + [aux_sym_function_static_declaration_token1] = ACTIONS(1022), + [aux_sym_global_declaration_token1] = ACTIONS(1022), + [aux_sym_namespace_definition_token1] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1022), + [anon_sym_BSLASH] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [aux_sym_trait_declaration_token1] = ACTIONS(1022), + [aux_sym_interface_declaration_token1] = ACTIONS(1022), + [aux_sym_enum_declaration_token1] = ACTIONS(1022), + [aux_sym_enum_case_token1] = ACTIONS(1022), + [aux_sym_class_declaration_token1] = ACTIONS(1022), + [aux_sym_final_modifier_token1] = ACTIONS(1022), + [aux_sym_abstract_modifier_token1] = ACTIONS(1022), + [aux_sym_readonly_modifier_token1] = ACTIONS(1022), + [aux_sym_visibility_modifier_token1] = ACTIONS(1022), + [aux_sym_visibility_modifier_token2] = ACTIONS(1022), + [aux_sym_visibility_modifier_token3] = ACTIONS(1022), + [aux_sym__arrow_function_header_token1] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1020), + [aux_sym_cast_type_token1] = ACTIONS(1022), + [aux_sym_echo_statement_token1] = ACTIONS(1022), + [anon_sym_unset] = ACTIONS(1022), + [aux_sym_declare_statement_token1] = ACTIONS(1022), + [aux_sym_declare_statement_token2] = ACTIONS(1022), + [sym_float] = ACTIONS(1022), + [aux_sym_try_statement_token1] = ACTIONS(1022), + [aux_sym_goto_statement_token1] = ACTIONS(1022), + [aux_sym_continue_statement_token1] = ACTIONS(1022), + [aux_sym_break_statement_token1] = ACTIONS(1022), + [sym_integer] = ACTIONS(1022), + [aux_sym_return_statement_token1] = ACTIONS(1022), + [aux_sym_throw_expression_token1] = ACTIONS(1022), + [aux_sym_while_statement_token1] = ACTIONS(1022), + [aux_sym_while_statement_token2] = ACTIONS(1022), + [aux_sym_do_statement_token1] = ACTIONS(1022), + [aux_sym_for_statement_token1] = ACTIONS(1022), + [aux_sym_for_statement_token2] = ACTIONS(1022), + [aux_sym_foreach_statement_token1] = ACTIONS(1022), + [aux_sym_foreach_statement_token2] = ACTIONS(1022), + [aux_sym_if_statement_token1] = ACTIONS(1022), + [aux_sym_if_statement_token2] = ACTIONS(1022), + [aux_sym_else_if_clause_token1] = ACTIONS(1022), + [aux_sym_else_clause_token1] = ACTIONS(1022), + [aux_sym_match_expression_token1] = ACTIONS(1022), + [aux_sym_match_default_expression_token1] = ACTIONS(1022), + [aux_sym_switch_statement_token1] = ACTIONS(1022), + [aux_sym_switch_block_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [aux_sym_clone_expression_token1] = ACTIONS(1022), + [aux_sym_print_intrinsic_token1] = ACTIONS(1022), + [aux_sym_object_creation_expression_token1] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [aux_sym__list_destructing_token1] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_self] = ACTIONS(1022), + [anon_sym_parent] = ACTIONS(1022), + [anon_sym_POUND_LBRACK] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1020), + [aux_sym_encapsed_string_token1] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [aux_sym_string_token1] = ACTIONS(1020), + [anon_sym_LT_LT_LT] = ACTIONS(1020), + [anon_sym_BQUOTE] = ACTIONS(1020), + [sym_boolean] = ACTIONS(1022), + [sym_null] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), + [aux_sym_yield_expression_token1] = ACTIONS(1022), + [aux_sym_include_expression_token1] = ACTIONS(1022), + [aux_sym_include_once_expression_token1] = ACTIONS(1022), + [aux_sym_require_expression_token1] = ACTIONS(1022), + [aux_sym_require_once_expression_token1] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1024), + }, + [439] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(2514), + [sym__unary_expression] = STATE(926), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(926), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(926), + [sym_cast_variable] = STATE(635), + [sym_member_access_expression] = STATE(635), + [sym_nullsafe_member_access_expression] = STATE(635), + [sym_scoped_property_access_expression] = STATE(635), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(1026), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_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), + }, + [440] = { + [ts_builtin_sym_end] = ACTIONS(1028), + [sym_name] = ACTIONS(1030), + [anon_sym_QMARK_GT] = ACTIONS(1028), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1032), + }, + [441] = { + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_name] = ACTIONS(1036), + [anon_sym_QMARK_GT] = ACTIONS(1034), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1038), + }, + [442] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_name] = ACTIONS(1042), + [anon_sym_QMARK_GT] = ACTIONS(1040), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1044), + }, + [443] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_name] = ACTIONS(1048), + [anon_sym_QMARK_GT] = ACTIONS(1046), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1050), + }, + [444] = { + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_name] = ACTIONS(1054), + [anon_sym_QMARK_GT] = ACTIONS(1052), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1056), + }, + [445] = { + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_name] = ACTIONS(1060), + [anon_sym_QMARK_GT] = ACTIONS(1058), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1062), + }, + [446] = { + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_name] = ACTIONS(1066), + [anon_sym_QMARK_GT] = ACTIONS(1064), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1068), + }, + [447] = { + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_name] = ACTIONS(1072), + [anon_sym_QMARK_GT] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1074), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1074), + }, + [448] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(2393), + [sym__unary_expression] = STATE(926), + [sym_unary_op_expression] = STATE(1028), + [sym_exponentiation_expression] = STATE(926), + [sym_clone_expression] = STATE(1028), + [sym__primary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(926), + [sym_cast_variable] = STATE(591), + [sym_member_access_expression] = STATE(591), + [sym_nullsafe_member_access_expression] = STATE(591), + [sym_scoped_property_access_expression] = STATE(591), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(1026), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_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), + }, + [449] = { + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_name] = ACTIONS(1078), + [anon_sym_QMARK_GT] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1080), + [aux_sym_function_static_declaration_token1] = ACTIONS(1078), + [aux_sym_global_declaration_token1] = ACTIONS(1078), + [aux_sym_namespace_definition_token1] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [aux_sym_trait_declaration_token1] = ACTIONS(1078), + [aux_sym_interface_declaration_token1] = ACTIONS(1078), + [aux_sym_enum_declaration_token1] = ACTIONS(1078), + [aux_sym_enum_case_token1] = ACTIONS(1078), + [aux_sym_class_declaration_token1] = ACTIONS(1078), + [aux_sym_final_modifier_token1] = ACTIONS(1078), + [aux_sym_abstract_modifier_token1] = ACTIONS(1078), + [aux_sym_readonly_modifier_token1] = ACTIONS(1078), + [aux_sym_visibility_modifier_token1] = ACTIONS(1078), + [aux_sym_visibility_modifier_token2] = ACTIONS(1078), + [aux_sym_visibility_modifier_token3] = ACTIONS(1078), + [aux_sym__arrow_function_header_token1] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [aux_sym_cast_type_token1] = ACTIONS(1078), + [aux_sym_echo_statement_token1] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1078), + [aux_sym_declare_statement_token1] = ACTIONS(1078), + [aux_sym_declare_statement_token2] = ACTIONS(1078), + [sym_float] = ACTIONS(1078), + [aux_sym_try_statement_token1] = ACTIONS(1078), + [aux_sym_goto_statement_token1] = ACTIONS(1078), + [aux_sym_continue_statement_token1] = ACTIONS(1078), + [aux_sym_break_statement_token1] = ACTIONS(1078), + [sym_integer] = ACTIONS(1078), + [aux_sym_return_statement_token1] = ACTIONS(1078), + [aux_sym_throw_expression_token1] = ACTIONS(1078), + [aux_sym_while_statement_token1] = ACTIONS(1078), + [aux_sym_while_statement_token2] = ACTIONS(1078), + [aux_sym_do_statement_token1] = ACTIONS(1078), + [aux_sym_for_statement_token1] = ACTIONS(1078), + [aux_sym_for_statement_token2] = ACTIONS(1078), + [aux_sym_foreach_statement_token1] = ACTIONS(1078), + [aux_sym_foreach_statement_token2] = ACTIONS(1078), + [aux_sym_if_statement_token1] = ACTIONS(1078), + [aux_sym_if_statement_token2] = ACTIONS(1078), + [aux_sym_else_if_clause_token1] = ACTIONS(1078), + [aux_sym_else_clause_token1] = ACTIONS(1078), + [aux_sym_match_expression_token1] = ACTIONS(1078), + [aux_sym_match_default_expression_token1] = ACTIONS(1078), + [aux_sym_switch_statement_token1] = ACTIONS(1078), + [aux_sym_switch_block_token1] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [aux_sym_clone_expression_token1] = ACTIONS(1078), + [aux_sym_print_intrinsic_token1] = ACTIONS(1078), + [aux_sym_object_creation_expression_token1] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [aux_sym__list_destructing_token1] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_self] = ACTIONS(1078), + [anon_sym_parent] = ACTIONS(1078), + [anon_sym_POUND_LBRACK] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [aux_sym_encapsed_string_token1] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [aux_sym_string_token1] = ACTIONS(1076), + [anon_sym_LT_LT_LT] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [sym_boolean] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1076), + [aux_sym_yield_expression_token1] = ACTIONS(1078), + [aux_sym_include_expression_token1] = ACTIONS(1078), + [aux_sym_include_once_expression_token1] = ACTIONS(1078), + [aux_sym_require_expression_token1] = ACTIONS(1078), + [aux_sym_require_once_expression_token1] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1080), + }, + [450] = { + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_name] = ACTIONS(1084), + [anon_sym_QMARK_GT] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1086), + [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(1086), + }, + [451] = { + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_name] = ACTIONS(1090), + [anon_sym_QMARK_GT] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1092), + [aux_sym_function_static_declaration_token1] = ACTIONS(1090), + [aux_sym_global_declaration_token1] = ACTIONS(1090), + [aux_sym_namespace_definition_token1] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1090), + [anon_sym_BSLASH] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [aux_sym_trait_declaration_token1] = ACTIONS(1090), + [aux_sym_interface_declaration_token1] = ACTIONS(1090), + [aux_sym_enum_declaration_token1] = ACTIONS(1090), + [aux_sym_enum_case_token1] = ACTIONS(1090), + [aux_sym_class_declaration_token1] = ACTIONS(1090), + [aux_sym_final_modifier_token1] = ACTIONS(1090), + [aux_sym_abstract_modifier_token1] = ACTIONS(1090), + [aux_sym_readonly_modifier_token1] = ACTIONS(1090), + [aux_sym_visibility_modifier_token1] = ACTIONS(1090), + [aux_sym_visibility_modifier_token2] = ACTIONS(1090), + [aux_sym_visibility_modifier_token3] = ACTIONS(1090), + [aux_sym__arrow_function_header_token1] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1088), + [aux_sym_cast_type_token1] = ACTIONS(1090), + [aux_sym_echo_statement_token1] = ACTIONS(1090), + [anon_sym_unset] = ACTIONS(1090), + [aux_sym_declare_statement_token1] = ACTIONS(1090), + [aux_sym_declare_statement_token2] = ACTIONS(1090), + [sym_float] = ACTIONS(1090), + [aux_sym_try_statement_token1] = ACTIONS(1090), + [aux_sym_goto_statement_token1] = ACTIONS(1090), + [aux_sym_continue_statement_token1] = ACTIONS(1090), + [aux_sym_break_statement_token1] = ACTIONS(1090), + [sym_integer] = ACTIONS(1090), + [aux_sym_return_statement_token1] = ACTIONS(1090), + [aux_sym_throw_expression_token1] = ACTIONS(1090), + [aux_sym_while_statement_token1] = ACTIONS(1090), + [aux_sym_while_statement_token2] = ACTIONS(1090), + [aux_sym_do_statement_token1] = ACTIONS(1090), + [aux_sym_for_statement_token1] = ACTIONS(1090), + [aux_sym_for_statement_token2] = ACTIONS(1090), + [aux_sym_foreach_statement_token1] = ACTIONS(1090), + [aux_sym_foreach_statement_token2] = ACTIONS(1090), + [aux_sym_if_statement_token1] = ACTIONS(1090), + [aux_sym_if_statement_token2] = ACTIONS(1090), + [aux_sym_else_if_clause_token1] = ACTIONS(1090), + [aux_sym_else_clause_token1] = ACTIONS(1090), + [aux_sym_match_expression_token1] = ACTIONS(1090), + [aux_sym_match_default_expression_token1] = ACTIONS(1090), + [aux_sym_switch_statement_token1] = ACTIONS(1090), + [aux_sym_switch_block_token1] = ACTIONS(1090), + [anon_sym_AT] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [aux_sym_clone_expression_token1] = ACTIONS(1090), + [aux_sym_print_intrinsic_token1] = ACTIONS(1090), + [aux_sym_object_creation_expression_token1] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [aux_sym__list_destructing_token1] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_self] = ACTIONS(1090), + [anon_sym_parent] = ACTIONS(1090), + [anon_sym_POUND_LBRACK] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [aux_sym_encapsed_string_token1] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [aux_sym_string_token1] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [anon_sym_BQUOTE] = ACTIONS(1088), + [sym_boolean] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1088), + [aux_sym_yield_expression_token1] = ACTIONS(1090), + [aux_sym_include_expression_token1] = ACTIONS(1090), + [aux_sym_include_once_expression_token1] = ACTIONS(1090), + [aux_sym_require_expression_token1] = ACTIONS(1090), + [aux_sym_require_once_expression_token1] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1092), + }, + [452] = { + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_name] = ACTIONS(1096), + [anon_sym_QMARK_GT] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1098), + [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), + [sym__automatic_semicolon] = ACTIONS(1098), + }, + [453] = { + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_name] = ACTIONS(1102), + [anon_sym_QMARK_GT] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1104), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1104), + }, + [454] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_name] = ACTIONS(1108), + [anon_sym_QMARK_GT] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1110), + [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), + [sym__automatic_semicolon] = ACTIONS(1110), + }, + [455] = { + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_name] = ACTIONS(1114), + [anon_sym_QMARK_GT] = ACTIONS(1112), + [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(3), + [sym__automatic_semicolon] = ACTIONS(1112), + }, + [456] = { + [sym_qualified_name] = STATE(839), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym_match_expression] = STATE(2403), + [sym__unary_expression] = STATE(1133), + [sym_unary_op_expression] = STATE(1046), + [sym_exponentiation_expression] = STATE(1133), + [sym_clone_expression] = STATE(1046), + [sym__primary_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(838), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_expression] = STATE(1133), + [sym_cast_variable] = STATE(632), + [sym_member_access_expression] = STATE(632), + [sym_nullsafe_member_access_expression] = STATE(632), + [sym_scoped_property_access_expression] = STATE(632), + [sym_function_call_expression] = STATE(600), + [sym_scoped_call_expression] = STATE(600), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(600), + [sym_nullsafe_member_call_expression] = STATE(600), + [sym_subscript_expression] = STATE(600), + [sym__dereferencable_expression] = STATE(1650), + [sym_array_creation_expression] = STATE(838), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(838), + [sym_string] = STATE(838), + [sym_heredoc] = STATE(838), + [sym_nowdoc] = STATE(838), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(838), + [sym_dynamic_variable_name] = STATE(600), + [sym_variable_name] = STATE(600), + [sym_include_expression] = STATE(1133), + [sym_include_once_expression] = STATE(1133), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(1116), + [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), + }, + [457] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(2514), + [sym__unary_expression] = STATE(926), + [sym_unary_op_expression] = STATE(973), + [sym_exponentiation_expression] = STATE(926), + [sym_clone_expression] = STATE(973), + [sym__primary_expression] = STATE(973), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(926), + [sym_cast_variable] = STATE(591), + [sym_member_access_expression] = STATE(591), + [sym_nullsafe_member_access_expression] = STATE(591), + [sym_scoped_property_access_expression] = STATE(591), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(1026), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_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), + }, + [458] = { + [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), + [sym__automatic_semicolon] = ACTIONS(1118), + }, + [459] = { + [sym_qualified_name] = STATE(689), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym_match_expression] = STATE(2454), + [sym__unary_expression] = STATE(926), + [sym_unary_op_expression] = STATE(1157), + [sym_exponentiation_expression] = STATE(926), + [sym_clone_expression] = STATE(1157), + [sym__primary_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(680), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_expression] = STATE(926), + [sym_cast_variable] = STATE(591), + [sym_member_access_expression] = STATE(591), + [sym_nullsafe_member_access_expression] = STATE(591), + [sym_scoped_property_access_expression] = STATE(591), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2438), + [sym_relative_scope] = STATE(2438), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1709), + [sym_array_creation_expression] = STATE(680), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(680), + [sym_string] = STATE(680), + [sym_heredoc] = STATE(680), + [sym_nowdoc] = STATE(680), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(680), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1533), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [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(1026), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_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), + }, + [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(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), + }, + [463] = { + [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), + }, + [464] = { + [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), + }, + [465] = { + [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), + }, + [466] = { + [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), + }, + [467] = { + [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), + }, + [468] = { + [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), + }, + [469] = { + [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), + }, + [470] = { + [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), + }, + [471] = { + [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), + }, + [472] = { + [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), + }, + [473] = { + [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), + }, + [474] = { + [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), + }, + [475] = { + [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), + }, + [476] = { + [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), + }, + [477] = { + [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), + }, + [478] = { + [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), + }, + [479] = { + [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), + }, + [480] = { + [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), + }, + [481] = { + [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), + }, + [482] = { + [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), + }, + [483] = { + [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), + }, + [484] = { + [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), + }, + [485] = { + [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), + }, + [486] = { + [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), + }, + [487] = { + [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), + }, + [488] = { + [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), + }, + [489] = { + [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), + }, + [490] = { + [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), + }, + [491] = { + [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), + }, + [492] = { + [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), + }, + [493] = { + [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), + }, + [494] = { + [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), + }, + [495] = { + [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), + }, + [496] = { + [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), + }, + [497] = { + [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), + }, + [498] = { + [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), + }, + [499] = { + [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), + }, + [500] = { + [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), + }, + [501] = { + [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), + }, + [502] = { + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_name] = ACTIONS(1114), + [anon_sym_QMARK_GT] = ACTIONS(1112), + [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(3), + }, + [503] = { + [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), + }, + [504] = { + [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), + }, + [505] = { + [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), + }, + [506] = { + [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), + }, + [507] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_name] = ACTIONS(996), + [anon_sym_QMARK_GT] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [aux_sym_function_static_declaration_token1] = ACTIONS(996), + [aux_sym_global_declaration_token1] = ACTIONS(996), + [aux_sym_namespace_definition_token1] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(996), + [anon_sym_BSLASH] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [aux_sym_trait_declaration_token1] = ACTIONS(996), + [aux_sym_interface_declaration_token1] = ACTIONS(996), + [aux_sym_enum_declaration_token1] = ACTIONS(996), + [aux_sym_enum_case_token1] = ACTIONS(996), + [aux_sym_class_declaration_token1] = ACTIONS(996), + [aux_sym_final_modifier_token1] = ACTIONS(996), + [aux_sym_abstract_modifier_token1] = ACTIONS(996), + [aux_sym_readonly_modifier_token1] = ACTIONS(996), + [aux_sym_visibility_modifier_token1] = ACTIONS(996), + [aux_sym_visibility_modifier_token2] = ACTIONS(996), + [aux_sym_visibility_modifier_token3] = ACTIONS(996), + [aux_sym__arrow_function_header_token1] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [aux_sym_cast_type_token1] = ACTIONS(996), + [aux_sym_echo_statement_token1] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(996), + [aux_sym_declare_statement_token1] = ACTIONS(996), + [aux_sym_declare_statement_token2] = ACTIONS(996), + [sym_float] = ACTIONS(996), + [aux_sym_try_statement_token1] = ACTIONS(996), + [aux_sym_goto_statement_token1] = ACTIONS(996), + [aux_sym_continue_statement_token1] = ACTIONS(996), + [aux_sym_break_statement_token1] = ACTIONS(996), + [sym_integer] = ACTIONS(996), + [aux_sym_return_statement_token1] = ACTIONS(996), + [aux_sym_throw_expression_token1] = ACTIONS(996), + [aux_sym_while_statement_token1] = ACTIONS(996), + [aux_sym_while_statement_token2] = ACTIONS(996), + [aux_sym_do_statement_token1] = ACTIONS(996), + [aux_sym_for_statement_token1] = ACTIONS(996), + [aux_sym_for_statement_token2] = ACTIONS(996), + [aux_sym_foreach_statement_token1] = ACTIONS(996), + [aux_sym_foreach_statement_token2] = ACTIONS(996), + [aux_sym_if_statement_token1] = ACTIONS(996), + [aux_sym_if_statement_token2] = ACTIONS(996), + [aux_sym_else_if_clause_token1] = ACTIONS(996), + [aux_sym_else_clause_token1] = ACTIONS(996), + [aux_sym_match_expression_token1] = ACTIONS(996), + [aux_sym_match_default_expression_token1] = ACTIONS(996), + [aux_sym_switch_statement_token1] = ACTIONS(996), + [aux_sym_switch_block_token1] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [aux_sym_clone_expression_token1] = ACTIONS(996), + [aux_sym_print_intrinsic_token1] = ACTIONS(996), + [aux_sym_object_creation_expression_token1] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [aux_sym__list_destructing_token1] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_self] = ACTIONS(996), + [anon_sym_parent] = ACTIONS(996), + [anon_sym_POUND_LBRACK] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [aux_sym_encapsed_string_token1] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [aux_sym_string_token1] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(994), + [anon_sym_BQUOTE] = ACTIONS(994), + [sym_boolean] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [aux_sym_yield_expression_token1] = ACTIONS(996), + [aux_sym_include_expression_token1] = ACTIONS(996), + [aux_sym_include_once_expression_token1] = ACTIONS(996), + [aux_sym_require_expression_token1] = ACTIONS(996), + [aux_sym_require_once_expression_token1] = ACTIONS(996), + [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(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), + }, + [514] = { + [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), + }, + [515] = { + [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), + }, + [516] = { + [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), + }, + [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(998), + [sym_name] = ACTIONS(1000), + [anon_sym_QMARK_GT] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [aux_sym_function_static_declaration_token1] = ACTIONS(1000), + [aux_sym_global_declaration_token1] = ACTIONS(1000), + [aux_sym_namespace_definition_token1] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1000), + [anon_sym_BSLASH] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [aux_sym_trait_declaration_token1] = ACTIONS(1000), + [aux_sym_interface_declaration_token1] = ACTIONS(1000), + [aux_sym_enum_declaration_token1] = ACTIONS(1000), + [aux_sym_enum_case_token1] = ACTIONS(1000), + [aux_sym_class_declaration_token1] = ACTIONS(1000), + [aux_sym_final_modifier_token1] = ACTIONS(1000), + [aux_sym_abstract_modifier_token1] = ACTIONS(1000), + [aux_sym_readonly_modifier_token1] = ACTIONS(1000), + [aux_sym_visibility_modifier_token1] = ACTIONS(1000), + [aux_sym_visibility_modifier_token2] = ACTIONS(1000), + [aux_sym_visibility_modifier_token3] = ACTIONS(1000), + [aux_sym__arrow_function_header_token1] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [aux_sym_cast_type_token1] = ACTIONS(1000), + [aux_sym_echo_statement_token1] = ACTIONS(1000), + [anon_sym_unset] = ACTIONS(1000), + [aux_sym_declare_statement_token1] = ACTIONS(1000), + [aux_sym_declare_statement_token2] = ACTIONS(1000), + [sym_float] = ACTIONS(1000), + [aux_sym_try_statement_token1] = ACTIONS(1000), + [aux_sym_goto_statement_token1] = ACTIONS(1000), + [aux_sym_continue_statement_token1] = ACTIONS(1000), + [aux_sym_break_statement_token1] = ACTIONS(1000), + [sym_integer] = ACTIONS(1000), + [aux_sym_return_statement_token1] = ACTIONS(1000), + [aux_sym_throw_expression_token1] = ACTIONS(1000), + [aux_sym_while_statement_token1] = ACTIONS(1000), + [aux_sym_while_statement_token2] = ACTIONS(1000), + [aux_sym_do_statement_token1] = ACTIONS(1000), + [aux_sym_for_statement_token1] = ACTIONS(1000), + [aux_sym_for_statement_token2] = ACTIONS(1000), + [aux_sym_foreach_statement_token1] = ACTIONS(1000), + [aux_sym_foreach_statement_token2] = ACTIONS(1000), + [aux_sym_if_statement_token1] = ACTIONS(1000), + [aux_sym_if_statement_token2] = ACTIONS(1000), + [aux_sym_else_if_clause_token1] = ACTIONS(1000), + [aux_sym_else_clause_token1] = ACTIONS(1000), + [aux_sym_match_expression_token1] = ACTIONS(1000), + [aux_sym_match_default_expression_token1] = ACTIONS(1000), + [aux_sym_switch_statement_token1] = ACTIONS(1000), + [aux_sym_switch_block_token1] = ACTIONS(1000), + [anon_sym_AT] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [aux_sym_clone_expression_token1] = ACTIONS(1000), + [aux_sym_print_intrinsic_token1] = ACTIONS(1000), + [aux_sym_object_creation_expression_token1] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [aux_sym__list_destructing_token1] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_self] = ACTIONS(1000), + [anon_sym_parent] = ACTIONS(1000), + [anon_sym_POUND_LBRACK] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [aux_sym_encapsed_string_token1] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [aux_sym_string_token1] = ACTIONS(998), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [sym_boolean] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [aux_sym_yield_expression_token1] = ACTIONS(1000), + [aux_sym_include_expression_token1] = ACTIONS(1000), + [aux_sym_include_once_expression_token1] = ACTIONS(1000), + [aux_sym_require_expression_token1] = ACTIONS(1000), + [aux_sym_require_once_expression_token1] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [524] = { + [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), + }, + [525] = { + [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), + }, + [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(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), + }, + [531] = { + [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), + }, + [532] = { + [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), + }, + [533] = { + [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), + }, + [534] = { + [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), + }, + [535] = { + [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), + }, + [536] = { + [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), + }, + [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(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), + }, + [540] = { + [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), + }, + [541] = { + [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), + }, + [542] = { + [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), + }, + [543] = { + [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), + }, + [544] = { + [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), + }, + [545] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_name] = ACTIONS(1428), + [anon_sym_QMARK_GT] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [aux_sym_function_static_declaration_token1] = ACTIONS(1428), + [aux_sym_global_declaration_token1] = ACTIONS(1428), + [aux_sym_namespace_definition_token1] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [aux_sym_trait_declaration_token1] = ACTIONS(1428), + [aux_sym_interface_declaration_token1] = ACTIONS(1428), + [aux_sym_enum_declaration_token1] = ACTIONS(1428), + [aux_sym_enum_case_token1] = ACTIONS(1428), + [aux_sym_class_declaration_token1] = ACTIONS(1428), + [aux_sym_final_modifier_token1] = ACTIONS(1428), + [aux_sym_abstract_modifier_token1] = ACTIONS(1428), + [aux_sym_readonly_modifier_token1] = ACTIONS(1428), + [aux_sym_visibility_modifier_token1] = ACTIONS(1428), + [aux_sym_visibility_modifier_token2] = ACTIONS(1428), + [aux_sym_visibility_modifier_token3] = ACTIONS(1428), + [aux_sym__arrow_function_header_token1] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1426), + [aux_sym_cast_type_token1] = ACTIONS(1428), + [aux_sym_echo_statement_token1] = ACTIONS(1428), + [anon_sym_unset] = ACTIONS(1428), + [aux_sym_declare_statement_token1] = ACTIONS(1428), + [aux_sym_declare_statement_token2] = ACTIONS(1428), + [sym_float] = ACTIONS(1428), + [aux_sym_try_statement_token1] = ACTIONS(1428), + [aux_sym_goto_statement_token1] = ACTIONS(1428), + [aux_sym_continue_statement_token1] = ACTIONS(1428), + [aux_sym_break_statement_token1] = ACTIONS(1428), + [sym_integer] = ACTIONS(1428), + [aux_sym_return_statement_token1] = ACTIONS(1428), + [aux_sym_throw_expression_token1] = ACTIONS(1428), + [aux_sym_while_statement_token1] = ACTIONS(1428), + [aux_sym_while_statement_token2] = ACTIONS(1428), + [aux_sym_do_statement_token1] = ACTIONS(1428), + [aux_sym_for_statement_token1] = ACTIONS(1428), + [aux_sym_for_statement_token2] = ACTIONS(1428), + [aux_sym_foreach_statement_token1] = ACTIONS(1428), + [aux_sym_foreach_statement_token2] = ACTIONS(1428), + [aux_sym_if_statement_token1] = ACTIONS(1428), + [aux_sym_if_statement_token2] = ACTIONS(1428), + [aux_sym_else_if_clause_token1] = ACTIONS(1428), + [aux_sym_else_clause_token1] = ACTIONS(1428), + [aux_sym_match_expression_token1] = ACTIONS(1428), + [aux_sym_match_default_expression_token1] = ACTIONS(1428), + [aux_sym_switch_statement_token1] = ACTIONS(1428), + [aux_sym_switch_block_token1] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [aux_sym_clone_expression_token1] = ACTIONS(1428), + [aux_sym_print_intrinsic_token1] = ACTIONS(1428), + [aux_sym_object_creation_expression_token1] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [aux_sym__list_destructing_token1] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_self] = ACTIONS(1428), + [anon_sym_parent] = ACTIONS(1428), + [anon_sym_POUND_LBRACK] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [aux_sym_encapsed_string_token1] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [aux_sym_string_token1] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_boolean] = ACTIONS(1428), + [sym_null] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1426), + [aux_sym_yield_expression_token1] = ACTIONS(1428), + [aux_sym_include_expression_token1] = ACTIONS(1428), + [aux_sym_include_once_expression_token1] = ACTIONS(1428), + [aux_sym_require_expression_token1] = ACTIONS(1428), + [aux_sym_require_once_expression_token1] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [546] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_name] = ACTIONS(1432), + [anon_sym_QMARK_GT] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [aux_sym_function_static_declaration_token1] = ACTIONS(1432), + [aux_sym_global_declaration_token1] = ACTIONS(1432), + [aux_sym_namespace_definition_token1] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [aux_sym_trait_declaration_token1] = ACTIONS(1432), + [aux_sym_interface_declaration_token1] = ACTIONS(1432), + [aux_sym_enum_declaration_token1] = ACTIONS(1432), + [aux_sym_enum_case_token1] = ACTIONS(1432), + [aux_sym_class_declaration_token1] = ACTIONS(1432), + [aux_sym_final_modifier_token1] = ACTIONS(1432), + [aux_sym_abstract_modifier_token1] = ACTIONS(1432), + [aux_sym_readonly_modifier_token1] = ACTIONS(1432), + [aux_sym_visibility_modifier_token1] = ACTIONS(1432), + [aux_sym_visibility_modifier_token2] = ACTIONS(1432), + [aux_sym_visibility_modifier_token3] = ACTIONS(1432), + [aux_sym__arrow_function_header_token1] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [aux_sym_cast_type_token1] = ACTIONS(1432), + [aux_sym_echo_statement_token1] = ACTIONS(1432), + [anon_sym_unset] = ACTIONS(1432), + [aux_sym_declare_statement_token1] = ACTIONS(1432), + [aux_sym_declare_statement_token2] = ACTIONS(1432), + [sym_float] = ACTIONS(1432), + [aux_sym_try_statement_token1] = ACTIONS(1432), + [aux_sym_goto_statement_token1] = ACTIONS(1432), + [aux_sym_continue_statement_token1] = ACTIONS(1432), + [aux_sym_break_statement_token1] = ACTIONS(1432), + [sym_integer] = ACTIONS(1432), + [aux_sym_return_statement_token1] = ACTIONS(1432), + [aux_sym_throw_expression_token1] = ACTIONS(1432), + [aux_sym_while_statement_token1] = ACTIONS(1432), + [aux_sym_while_statement_token2] = ACTIONS(1432), + [aux_sym_do_statement_token1] = ACTIONS(1432), + [aux_sym_for_statement_token1] = ACTIONS(1432), + [aux_sym_for_statement_token2] = ACTIONS(1432), + [aux_sym_foreach_statement_token1] = ACTIONS(1432), + [aux_sym_foreach_statement_token2] = ACTIONS(1432), + [aux_sym_if_statement_token1] = ACTIONS(1432), + [aux_sym_if_statement_token2] = ACTIONS(1432), + [aux_sym_else_if_clause_token1] = ACTIONS(1432), + [aux_sym_else_clause_token1] = ACTIONS(1432), + [aux_sym_match_expression_token1] = ACTIONS(1432), + [aux_sym_match_default_expression_token1] = ACTIONS(1432), + [aux_sym_switch_statement_token1] = ACTIONS(1432), + [aux_sym_switch_block_token1] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [aux_sym_clone_expression_token1] = ACTIONS(1432), + [aux_sym_print_intrinsic_token1] = ACTIONS(1432), + [aux_sym_object_creation_expression_token1] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [aux_sym__list_destructing_token1] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_self] = ACTIONS(1432), + [anon_sym_parent] = ACTIONS(1432), + [anon_sym_POUND_LBRACK] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [aux_sym_encapsed_string_token1] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [aux_sym_string_token1] = ACTIONS(1430), + [anon_sym_LT_LT_LT] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_boolean] = ACTIONS(1432), + [sym_null] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1430), + [aux_sym_yield_expression_token1] = ACTIONS(1432), + [aux_sym_include_expression_token1] = ACTIONS(1432), + [aux_sym_include_once_expression_token1] = ACTIONS(1432), + [aux_sym_require_expression_token1] = ACTIONS(1432), + [aux_sym_require_once_expression_token1] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + }, + [547] = { + [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), + }, + [548] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_name] = ACTIONS(1436), + [anon_sym_QMARK_GT] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [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(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [aux_sym_trait_declaration_token1] = ACTIONS(1436), + [aux_sym_interface_declaration_token1] = ACTIONS(1436), + [aux_sym_enum_declaration_token1] = ACTIONS(1436), + [aux_sym_enum_case_token1] = ACTIONS(1436), + [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(1434), + [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), + [aux_sym_declare_statement_token2] = 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_while_statement_token2] = ACTIONS(1436), + [aux_sym_do_statement_token1] = ACTIONS(1436), + [aux_sym_for_statement_token1] = ACTIONS(1436), + [aux_sym_for_statement_token2] = ACTIONS(1436), + [aux_sym_foreach_statement_token1] = ACTIONS(1436), + [aux_sym_foreach_statement_token2] = ACTIONS(1436), + [aux_sym_if_statement_token1] = ACTIONS(1436), + [aux_sym_if_statement_token2] = ACTIONS(1436), + [aux_sym_else_if_clause_token1] = ACTIONS(1436), + [aux_sym_else_clause_token1] = ACTIONS(1436), + [aux_sym_match_expression_token1] = ACTIONS(1436), + [aux_sym_match_default_expression_token1] = ACTIONS(1436), + [aux_sym_switch_statement_token1] = ACTIONS(1436), + [aux_sym_switch_block_token1] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [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(1434), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [aux_sym__list_destructing_token1] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_self] = ACTIONS(1436), + [anon_sym_parent] = ACTIONS(1436), + [anon_sym_POUND_LBRACK] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [aux_sym_encapsed_string_token1] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [aux_sym_string_token1] = ACTIONS(1434), + [anon_sym_LT_LT_LT] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [sym_boolean] = ACTIONS(1436), + [sym_null] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1434), + [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(3), + }, + [549] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_name] = ACTIONS(1440), + [anon_sym_QMARK_GT] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [aux_sym_function_static_declaration_token1] = ACTIONS(1440), + [aux_sym_global_declaration_token1] = ACTIONS(1440), + [aux_sym_namespace_definition_token1] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1440), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [aux_sym_trait_declaration_token1] = ACTIONS(1440), + [aux_sym_interface_declaration_token1] = ACTIONS(1440), + [aux_sym_enum_declaration_token1] = ACTIONS(1440), + [aux_sym_enum_case_token1] = ACTIONS(1440), + [aux_sym_class_declaration_token1] = ACTIONS(1440), + [aux_sym_final_modifier_token1] = ACTIONS(1440), + [aux_sym_abstract_modifier_token1] = ACTIONS(1440), + [aux_sym_readonly_modifier_token1] = ACTIONS(1440), + [aux_sym_visibility_modifier_token1] = ACTIONS(1440), + [aux_sym_visibility_modifier_token2] = ACTIONS(1440), + [aux_sym_visibility_modifier_token3] = ACTIONS(1440), + [aux_sym__arrow_function_header_token1] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1438), + [aux_sym_cast_type_token1] = ACTIONS(1440), + [aux_sym_echo_statement_token1] = ACTIONS(1440), + [anon_sym_unset] = ACTIONS(1440), + [aux_sym_declare_statement_token1] = ACTIONS(1440), + [aux_sym_declare_statement_token2] = ACTIONS(1440), + [sym_float] = ACTIONS(1440), + [aux_sym_try_statement_token1] = ACTIONS(1440), + [aux_sym_goto_statement_token1] = ACTIONS(1440), + [aux_sym_continue_statement_token1] = ACTIONS(1440), + [aux_sym_break_statement_token1] = ACTIONS(1440), + [sym_integer] = ACTIONS(1440), + [aux_sym_return_statement_token1] = ACTIONS(1440), + [aux_sym_throw_expression_token1] = ACTIONS(1440), + [aux_sym_while_statement_token1] = ACTIONS(1440), + [aux_sym_while_statement_token2] = ACTIONS(1440), + [aux_sym_do_statement_token1] = ACTIONS(1440), + [aux_sym_for_statement_token1] = ACTIONS(1440), + [aux_sym_for_statement_token2] = ACTIONS(1440), + [aux_sym_foreach_statement_token1] = ACTIONS(1440), + [aux_sym_foreach_statement_token2] = ACTIONS(1440), + [aux_sym_if_statement_token1] = ACTIONS(1440), + [aux_sym_if_statement_token2] = ACTIONS(1440), + [aux_sym_else_if_clause_token1] = ACTIONS(1440), + [aux_sym_else_clause_token1] = ACTIONS(1440), + [aux_sym_match_expression_token1] = ACTIONS(1440), + [aux_sym_match_default_expression_token1] = ACTIONS(1440), + [aux_sym_switch_statement_token1] = ACTIONS(1440), + [aux_sym_switch_block_token1] = ACTIONS(1440), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [aux_sym_clone_expression_token1] = ACTIONS(1440), + [aux_sym_print_intrinsic_token1] = ACTIONS(1440), + [aux_sym_object_creation_expression_token1] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [aux_sym__list_destructing_token1] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_self] = ACTIONS(1440), + [anon_sym_parent] = ACTIONS(1440), + [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(1440), + [sym_null] = ACTIONS(1440), + [anon_sym_DOLLAR] = ACTIONS(1438), + [aux_sym_yield_expression_token1] = ACTIONS(1440), + [aux_sym_include_expression_token1] = ACTIONS(1440), + [aux_sym_include_once_expression_token1] = ACTIONS(1440), + [aux_sym_require_expression_token1] = ACTIONS(1440), + [aux_sym_require_once_expression_token1] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [550] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_name] = ACTIONS(1444), + [anon_sym_QMARK_GT] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [aux_sym_function_static_declaration_token1] = ACTIONS(1444), + [aux_sym_global_declaration_token1] = ACTIONS(1444), + [aux_sym_namespace_definition_token1] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [aux_sym_trait_declaration_token1] = ACTIONS(1444), + [aux_sym_interface_declaration_token1] = ACTIONS(1444), + [aux_sym_enum_declaration_token1] = ACTIONS(1444), + [aux_sym_enum_case_token1] = ACTIONS(1444), + [aux_sym_class_declaration_token1] = ACTIONS(1444), + [aux_sym_final_modifier_token1] = ACTIONS(1444), + [aux_sym_abstract_modifier_token1] = ACTIONS(1444), + [aux_sym_readonly_modifier_token1] = ACTIONS(1444), + [aux_sym_visibility_modifier_token1] = ACTIONS(1444), + [aux_sym_visibility_modifier_token2] = ACTIONS(1444), + [aux_sym_visibility_modifier_token3] = ACTIONS(1444), + [aux_sym__arrow_function_header_token1] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1442), + [aux_sym_cast_type_token1] = ACTIONS(1444), + [aux_sym_echo_statement_token1] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [aux_sym_declare_statement_token1] = ACTIONS(1444), + [aux_sym_declare_statement_token2] = ACTIONS(1444), + [sym_float] = ACTIONS(1444), + [aux_sym_try_statement_token1] = ACTIONS(1444), + [aux_sym_goto_statement_token1] = ACTIONS(1444), + [aux_sym_continue_statement_token1] = ACTIONS(1444), + [aux_sym_break_statement_token1] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [aux_sym_return_statement_token1] = ACTIONS(1444), + [aux_sym_throw_expression_token1] = ACTIONS(1444), + [aux_sym_while_statement_token1] = ACTIONS(1444), + [aux_sym_while_statement_token2] = ACTIONS(1444), + [aux_sym_do_statement_token1] = ACTIONS(1444), + [aux_sym_for_statement_token1] = ACTIONS(1444), + [aux_sym_for_statement_token2] = ACTIONS(1444), + [aux_sym_foreach_statement_token1] = ACTIONS(1444), + [aux_sym_foreach_statement_token2] = ACTIONS(1444), + [aux_sym_if_statement_token1] = ACTIONS(1444), + [aux_sym_if_statement_token2] = ACTIONS(1444), + [aux_sym_else_if_clause_token1] = ACTIONS(1444), + [aux_sym_else_clause_token1] = ACTIONS(1444), + [aux_sym_match_expression_token1] = ACTIONS(1444), + [aux_sym_match_default_expression_token1] = ACTIONS(1444), + [aux_sym_switch_statement_token1] = ACTIONS(1444), + [aux_sym_switch_block_token1] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [aux_sym_clone_expression_token1] = ACTIONS(1444), + [aux_sym_print_intrinsic_token1] = ACTIONS(1444), + [aux_sym_object_creation_expression_token1] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [aux_sym__list_destructing_token1] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_self] = ACTIONS(1444), + [anon_sym_parent] = ACTIONS(1444), + [anon_sym_POUND_LBRACK] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [aux_sym_encapsed_string_token1] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [aux_sym_string_token1] = ACTIONS(1442), + [anon_sym_LT_LT_LT] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [sym_boolean] = ACTIONS(1444), + [sym_null] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1442), + [aux_sym_yield_expression_token1] = ACTIONS(1444), + [aux_sym_include_expression_token1] = ACTIONS(1444), + [aux_sym_include_once_expression_token1] = ACTIONS(1444), + [aux_sym_require_expression_token1] = ACTIONS(1444), + [aux_sym_require_once_expression_token1] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [551] = { + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_name] = ACTIONS(1448), + [anon_sym_QMARK_GT] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [aux_sym_function_static_declaration_token1] = ACTIONS(1448), + [aux_sym_global_declaration_token1] = ACTIONS(1448), + [aux_sym_namespace_definition_token1] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1448), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [aux_sym_trait_declaration_token1] = ACTIONS(1448), + [aux_sym_interface_declaration_token1] = ACTIONS(1448), + [aux_sym_enum_declaration_token1] = ACTIONS(1448), + [aux_sym_enum_case_token1] = ACTIONS(1448), + [aux_sym_class_declaration_token1] = ACTIONS(1448), + [aux_sym_final_modifier_token1] = ACTIONS(1448), + [aux_sym_abstract_modifier_token1] = ACTIONS(1448), + [aux_sym_readonly_modifier_token1] = ACTIONS(1448), + [aux_sym_visibility_modifier_token1] = ACTIONS(1448), + [aux_sym_visibility_modifier_token2] = ACTIONS(1448), + [aux_sym_visibility_modifier_token3] = ACTIONS(1448), + [aux_sym__arrow_function_header_token1] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1446), + [aux_sym_cast_type_token1] = ACTIONS(1448), + [aux_sym_echo_statement_token1] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [aux_sym_declare_statement_token1] = ACTIONS(1448), + [aux_sym_declare_statement_token2] = ACTIONS(1448), + [sym_float] = ACTIONS(1448), + [aux_sym_try_statement_token1] = ACTIONS(1448), + [aux_sym_goto_statement_token1] = ACTIONS(1448), + [aux_sym_continue_statement_token1] = ACTIONS(1448), + [aux_sym_break_statement_token1] = ACTIONS(1448), + [sym_integer] = ACTIONS(1448), + [aux_sym_return_statement_token1] = ACTIONS(1448), + [aux_sym_throw_expression_token1] = ACTIONS(1448), + [aux_sym_while_statement_token1] = ACTIONS(1448), + [aux_sym_while_statement_token2] = ACTIONS(1448), + [aux_sym_do_statement_token1] = ACTIONS(1448), + [aux_sym_for_statement_token1] = ACTIONS(1448), + [aux_sym_for_statement_token2] = ACTIONS(1448), + [aux_sym_foreach_statement_token1] = ACTIONS(1448), + [aux_sym_foreach_statement_token2] = ACTIONS(1448), + [aux_sym_if_statement_token1] = ACTIONS(1448), + [aux_sym_if_statement_token2] = ACTIONS(1448), + [aux_sym_else_if_clause_token1] = ACTIONS(1448), + [aux_sym_else_clause_token1] = ACTIONS(1448), + [aux_sym_match_expression_token1] = ACTIONS(1448), + [aux_sym_match_default_expression_token1] = ACTIONS(1448), + [aux_sym_switch_statement_token1] = ACTIONS(1448), + [aux_sym_switch_block_token1] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [aux_sym_clone_expression_token1] = ACTIONS(1448), + [aux_sym_print_intrinsic_token1] = ACTIONS(1448), + [aux_sym_object_creation_expression_token1] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [aux_sym__list_destructing_token1] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_self] = ACTIONS(1448), + [anon_sym_parent] = ACTIONS(1448), + [anon_sym_POUND_LBRACK] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [aux_sym_encapsed_string_token1] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [aux_sym_string_token1] = ACTIONS(1446), + [anon_sym_LT_LT_LT] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [sym_boolean] = ACTIONS(1448), + [sym_null] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1446), + [aux_sym_yield_expression_token1] = ACTIONS(1448), + [aux_sym_include_expression_token1] = ACTIONS(1448), + [aux_sym_include_once_expression_token1] = ACTIONS(1448), + [aux_sym_require_expression_token1] = ACTIONS(1448), + [aux_sym_require_once_expression_token1] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + }, + [552] = { + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_name] = ACTIONS(1452), + [anon_sym_QMARK_GT] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [aux_sym_function_static_declaration_token1] = ACTIONS(1452), + [aux_sym_global_declaration_token1] = ACTIONS(1452), + [aux_sym_namespace_definition_token1] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1452), + [anon_sym_BSLASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [aux_sym_trait_declaration_token1] = ACTIONS(1452), + [aux_sym_interface_declaration_token1] = ACTIONS(1452), + [aux_sym_enum_declaration_token1] = ACTIONS(1452), + [aux_sym_enum_case_token1] = ACTIONS(1452), + [aux_sym_class_declaration_token1] = ACTIONS(1452), + [aux_sym_final_modifier_token1] = ACTIONS(1452), + [aux_sym_abstract_modifier_token1] = ACTIONS(1452), + [aux_sym_readonly_modifier_token1] = ACTIONS(1452), + [aux_sym_visibility_modifier_token1] = ACTIONS(1452), + [aux_sym_visibility_modifier_token2] = ACTIONS(1452), + [aux_sym_visibility_modifier_token3] = ACTIONS(1452), + [aux_sym__arrow_function_header_token1] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1450), + [aux_sym_cast_type_token1] = ACTIONS(1452), + [aux_sym_echo_statement_token1] = ACTIONS(1452), + [anon_sym_unset] = ACTIONS(1452), + [aux_sym_declare_statement_token1] = ACTIONS(1452), + [aux_sym_declare_statement_token2] = ACTIONS(1452), + [sym_float] = ACTIONS(1452), + [aux_sym_try_statement_token1] = ACTIONS(1452), + [aux_sym_goto_statement_token1] = ACTIONS(1452), + [aux_sym_continue_statement_token1] = ACTIONS(1452), + [aux_sym_break_statement_token1] = ACTIONS(1452), + [sym_integer] = ACTIONS(1452), + [aux_sym_return_statement_token1] = ACTIONS(1452), + [aux_sym_throw_expression_token1] = ACTIONS(1452), + [aux_sym_while_statement_token1] = ACTIONS(1452), + [aux_sym_while_statement_token2] = ACTIONS(1452), + [aux_sym_do_statement_token1] = ACTIONS(1452), + [aux_sym_for_statement_token1] = ACTIONS(1452), + [aux_sym_for_statement_token2] = ACTIONS(1452), + [aux_sym_foreach_statement_token1] = ACTIONS(1452), + [aux_sym_foreach_statement_token2] = ACTIONS(1452), + [aux_sym_if_statement_token1] = ACTIONS(1452), + [aux_sym_if_statement_token2] = ACTIONS(1452), + [aux_sym_else_if_clause_token1] = ACTIONS(1452), + [aux_sym_else_clause_token1] = ACTIONS(1452), + [aux_sym_match_expression_token1] = ACTIONS(1452), + [aux_sym_match_default_expression_token1] = ACTIONS(1452), + [aux_sym_switch_statement_token1] = ACTIONS(1452), + [aux_sym_switch_block_token1] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [aux_sym_clone_expression_token1] = ACTIONS(1452), + [aux_sym_print_intrinsic_token1] = ACTIONS(1452), + [aux_sym_object_creation_expression_token1] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [aux_sym__list_destructing_token1] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_self] = ACTIONS(1452), + [anon_sym_parent] = ACTIONS(1452), + [anon_sym_POUND_LBRACK] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [aux_sym_encapsed_string_token1] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [aux_sym_string_token1] = ACTIONS(1450), + [anon_sym_LT_LT_LT] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1450), + [sym_boolean] = ACTIONS(1452), + [sym_null] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1450), + [aux_sym_yield_expression_token1] = ACTIONS(1452), + [aux_sym_include_expression_token1] = ACTIONS(1452), + [aux_sym_include_once_expression_token1] = ACTIONS(1452), + [aux_sym_require_expression_token1] = ACTIONS(1452), + [aux_sym_require_once_expression_token1] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + }, + [553] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_name] = ACTIONS(1456), + [anon_sym_QMARK_GT] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [aux_sym_function_static_declaration_token1] = ACTIONS(1456), + [aux_sym_global_declaration_token1] = ACTIONS(1456), + [aux_sym_namespace_definition_token1] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [aux_sym_trait_declaration_token1] = ACTIONS(1456), + [aux_sym_interface_declaration_token1] = ACTIONS(1456), + [aux_sym_enum_declaration_token1] = ACTIONS(1456), + [aux_sym_enum_case_token1] = ACTIONS(1456), + [aux_sym_class_declaration_token1] = ACTIONS(1456), + [aux_sym_final_modifier_token1] = ACTIONS(1456), + [aux_sym_abstract_modifier_token1] = ACTIONS(1456), + [aux_sym_readonly_modifier_token1] = ACTIONS(1456), + [aux_sym_visibility_modifier_token1] = ACTIONS(1456), + [aux_sym_visibility_modifier_token2] = ACTIONS(1456), + [aux_sym_visibility_modifier_token3] = ACTIONS(1456), + [aux_sym__arrow_function_header_token1] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1454), + [aux_sym_cast_type_token1] = ACTIONS(1456), + [aux_sym_echo_statement_token1] = ACTIONS(1456), + [anon_sym_unset] = ACTIONS(1456), + [aux_sym_declare_statement_token1] = ACTIONS(1456), + [aux_sym_declare_statement_token2] = ACTIONS(1456), + [sym_float] = ACTIONS(1456), + [aux_sym_try_statement_token1] = ACTIONS(1456), + [aux_sym_goto_statement_token1] = ACTIONS(1456), + [aux_sym_continue_statement_token1] = ACTIONS(1456), + [aux_sym_break_statement_token1] = ACTIONS(1456), + [sym_integer] = ACTIONS(1456), + [aux_sym_return_statement_token1] = ACTIONS(1456), + [aux_sym_throw_expression_token1] = ACTIONS(1456), + [aux_sym_while_statement_token1] = ACTIONS(1456), + [aux_sym_while_statement_token2] = ACTIONS(1456), + [aux_sym_do_statement_token1] = ACTIONS(1456), + [aux_sym_for_statement_token1] = ACTIONS(1456), + [aux_sym_for_statement_token2] = ACTIONS(1456), + [aux_sym_foreach_statement_token1] = ACTIONS(1456), + [aux_sym_foreach_statement_token2] = ACTIONS(1456), + [aux_sym_if_statement_token1] = ACTIONS(1456), + [aux_sym_if_statement_token2] = ACTIONS(1456), + [aux_sym_else_if_clause_token1] = ACTIONS(1456), + [aux_sym_else_clause_token1] = ACTIONS(1456), + [aux_sym_match_expression_token1] = ACTIONS(1456), + [aux_sym_match_default_expression_token1] = ACTIONS(1456), + [aux_sym_switch_statement_token1] = ACTIONS(1456), + [aux_sym_switch_block_token1] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [aux_sym_clone_expression_token1] = ACTIONS(1456), + [aux_sym_print_intrinsic_token1] = ACTIONS(1456), + [aux_sym_object_creation_expression_token1] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [aux_sym__list_destructing_token1] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_self] = ACTIONS(1456), + [anon_sym_parent] = ACTIONS(1456), + [anon_sym_POUND_LBRACK] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [aux_sym_encapsed_string_token1] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [aux_sym_string_token1] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [sym_boolean] = ACTIONS(1456), + [sym_null] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1454), + [aux_sym_yield_expression_token1] = ACTIONS(1456), + [aux_sym_include_expression_token1] = ACTIONS(1456), + [aux_sym_include_once_expression_token1] = ACTIONS(1456), + [aux_sym_require_expression_token1] = ACTIONS(1456), + [aux_sym_require_once_expression_token1] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + }, + [554] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_name] = ACTIONS(1456), + [anon_sym_QMARK_GT] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [aux_sym_function_static_declaration_token1] = ACTIONS(1456), + [aux_sym_global_declaration_token1] = ACTIONS(1456), + [aux_sym_namespace_definition_token1] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [aux_sym_trait_declaration_token1] = ACTIONS(1456), + [aux_sym_interface_declaration_token1] = ACTIONS(1456), + [aux_sym_enum_declaration_token1] = ACTIONS(1456), + [aux_sym_enum_case_token1] = ACTIONS(1456), + [aux_sym_class_declaration_token1] = ACTIONS(1456), + [aux_sym_final_modifier_token1] = ACTIONS(1456), + [aux_sym_abstract_modifier_token1] = ACTIONS(1456), + [aux_sym_readonly_modifier_token1] = ACTIONS(1456), + [aux_sym_visibility_modifier_token1] = ACTIONS(1456), + [aux_sym_visibility_modifier_token2] = ACTIONS(1456), + [aux_sym_visibility_modifier_token3] = ACTIONS(1456), + [aux_sym__arrow_function_header_token1] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1454), + [aux_sym_cast_type_token1] = ACTIONS(1456), + [aux_sym_echo_statement_token1] = ACTIONS(1456), + [anon_sym_unset] = ACTIONS(1456), + [aux_sym_declare_statement_token1] = ACTIONS(1456), + [aux_sym_declare_statement_token2] = ACTIONS(1456), + [sym_float] = ACTIONS(1456), + [aux_sym_try_statement_token1] = ACTIONS(1456), + [aux_sym_goto_statement_token1] = ACTIONS(1456), + [aux_sym_continue_statement_token1] = ACTIONS(1456), + [aux_sym_break_statement_token1] = ACTIONS(1456), + [sym_integer] = ACTIONS(1456), + [aux_sym_return_statement_token1] = ACTIONS(1456), + [aux_sym_throw_expression_token1] = ACTIONS(1456), + [aux_sym_while_statement_token1] = ACTIONS(1456), + [aux_sym_while_statement_token2] = ACTIONS(1456), + [aux_sym_do_statement_token1] = ACTIONS(1456), + [aux_sym_for_statement_token1] = ACTIONS(1456), + [aux_sym_for_statement_token2] = ACTIONS(1456), + [aux_sym_foreach_statement_token1] = ACTIONS(1456), + [aux_sym_foreach_statement_token2] = ACTIONS(1456), + [aux_sym_if_statement_token1] = ACTIONS(1456), + [aux_sym_if_statement_token2] = ACTIONS(1456), + [aux_sym_else_if_clause_token1] = ACTIONS(1456), + [aux_sym_else_clause_token1] = ACTIONS(1456), + [aux_sym_match_expression_token1] = ACTIONS(1456), + [aux_sym_match_default_expression_token1] = ACTIONS(1456), + [aux_sym_switch_statement_token1] = ACTIONS(1456), + [aux_sym_switch_block_token1] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [aux_sym_clone_expression_token1] = ACTIONS(1456), + [aux_sym_print_intrinsic_token1] = ACTIONS(1456), + [aux_sym_object_creation_expression_token1] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [aux_sym__list_destructing_token1] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_self] = ACTIONS(1456), + [anon_sym_parent] = ACTIONS(1456), + [anon_sym_POUND_LBRACK] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [aux_sym_encapsed_string_token1] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [aux_sym_string_token1] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [sym_boolean] = ACTIONS(1456), + [sym_null] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1454), + [aux_sym_yield_expression_token1] = ACTIONS(1456), + [aux_sym_include_expression_token1] = ACTIONS(1456), + [aux_sym_include_once_expression_token1] = ACTIONS(1456), + [aux_sym_require_expression_token1] = ACTIONS(1456), + [aux_sym_require_once_expression_token1] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + }, + [555] = { + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_name] = ACTIONS(1460), + [anon_sym_QMARK_GT] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [aux_sym_function_static_declaration_token1] = ACTIONS(1460), + [aux_sym_global_declaration_token1] = ACTIONS(1460), + [aux_sym_namespace_definition_token1] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1460), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [aux_sym_trait_declaration_token1] = ACTIONS(1460), + [aux_sym_interface_declaration_token1] = ACTIONS(1460), + [aux_sym_enum_declaration_token1] = ACTIONS(1460), + [aux_sym_enum_case_token1] = ACTIONS(1460), + [aux_sym_class_declaration_token1] = ACTIONS(1460), + [aux_sym_final_modifier_token1] = ACTIONS(1460), + [aux_sym_abstract_modifier_token1] = ACTIONS(1460), + [aux_sym_readonly_modifier_token1] = ACTIONS(1460), + [aux_sym_visibility_modifier_token1] = ACTIONS(1460), + [aux_sym_visibility_modifier_token2] = ACTIONS(1460), + [aux_sym_visibility_modifier_token3] = ACTIONS(1460), + [aux_sym__arrow_function_header_token1] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1458), + [aux_sym_cast_type_token1] = ACTIONS(1460), + [aux_sym_echo_statement_token1] = ACTIONS(1460), + [anon_sym_unset] = ACTIONS(1460), + [aux_sym_declare_statement_token1] = ACTIONS(1460), + [aux_sym_declare_statement_token2] = ACTIONS(1460), + [sym_float] = ACTIONS(1460), + [aux_sym_try_statement_token1] = ACTIONS(1460), + [aux_sym_goto_statement_token1] = ACTIONS(1460), + [aux_sym_continue_statement_token1] = ACTIONS(1460), + [aux_sym_break_statement_token1] = ACTIONS(1460), + [sym_integer] = ACTIONS(1460), + [aux_sym_return_statement_token1] = ACTIONS(1460), + [aux_sym_throw_expression_token1] = ACTIONS(1460), + [aux_sym_while_statement_token1] = ACTIONS(1460), + [aux_sym_while_statement_token2] = ACTIONS(1460), + [aux_sym_do_statement_token1] = ACTIONS(1460), + [aux_sym_for_statement_token1] = ACTIONS(1460), + [aux_sym_for_statement_token2] = ACTIONS(1460), + [aux_sym_foreach_statement_token1] = ACTIONS(1460), + [aux_sym_foreach_statement_token2] = ACTIONS(1460), + [aux_sym_if_statement_token1] = ACTIONS(1460), + [aux_sym_if_statement_token2] = ACTIONS(1460), + [aux_sym_else_if_clause_token1] = ACTIONS(1460), + [aux_sym_else_clause_token1] = ACTIONS(1460), + [aux_sym_match_expression_token1] = ACTIONS(1460), + [aux_sym_match_default_expression_token1] = ACTIONS(1460), + [aux_sym_switch_statement_token1] = ACTIONS(1460), + [aux_sym_switch_block_token1] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [aux_sym_clone_expression_token1] = ACTIONS(1460), + [aux_sym_print_intrinsic_token1] = ACTIONS(1460), + [aux_sym_object_creation_expression_token1] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym__list_destructing_token1] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_self] = ACTIONS(1460), + [anon_sym_parent] = ACTIONS(1460), + [anon_sym_POUND_LBRACK] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [aux_sym_encapsed_string_token1] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [aux_sym_string_token1] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [sym_boolean] = ACTIONS(1460), + [sym_null] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1458), + [aux_sym_yield_expression_token1] = ACTIONS(1460), + [aux_sym_include_expression_token1] = ACTIONS(1460), + [aux_sym_include_once_expression_token1] = ACTIONS(1460), + [aux_sym_require_expression_token1] = ACTIONS(1460), + [aux_sym_require_once_expression_token1] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + }, + [556] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_name] = ACTIONS(1464), + [anon_sym_QMARK_GT] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [aux_sym_function_static_declaration_token1] = ACTIONS(1464), + [aux_sym_global_declaration_token1] = ACTIONS(1464), + [aux_sym_namespace_definition_token1] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [aux_sym_trait_declaration_token1] = ACTIONS(1464), + [aux_sym_interface_declaration_token1] = ACTIONS(1464), + [aux_sym_enum_declaration_token1] = ACTIONS(1464), + [aux_sym_enum_case_token1] = ACTIONS(1464), + [aux_sym_class_declaration_token1] = ACTIONS(1464), + [aux_sym_final_modifier_token1] = ACTIONS(1464), + [aux_sym_abstract_modifier_token1] = ACTIONS(1464), + [aux_sym_readonly_modifier_token1] = ACTIONS(1464), + [aux_sym_visibility_modifier_token1] = ACTIONS(1464), + [aux_sym_visibility_modifier_token2] = ACTIONS(1464), + [aux_sym_visibility_modifier_token3] = ACTIONS(1464), + [aux_sym__arrow_function_header_token1] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [aux_sym_cast_type_token1] = ACTIONS(1464), + [aux_sym_echo_statement_token1] = ACTIONS(1464), + [anon_sym_unset] = ACTIONS(1464), + [aux_sym_declare_statement_token1] = ACTIONS(1464), + [aux_sym_declare_statement_token2] = ACTIONS(1464), + [sym_float] = ACTIONS(1464), + [aux_sym_try_statement_token1] = ACTIONS(1464), + [aux_sym_goto_statement_token1] = ACTIONS(1464), + [aux_sym_continue_statement_token1] = ACTIONS(1464), + [aux_sym_break_statement_token1] = ACTIONS(1464), + [sym_integer] = ACTIONS(1464), + [aux_sym_return_statement_token1] = ACTIONS(1464), + [aux_sym_throw_expression_token1] = ACTIONS(1464), + [aux_sym_while_statement_token1] = ACTIONS(1464), + [aux_sym_while_statement_token2] = ACTIONS(1464), + [aux_sym_do_statement_token1] = ACTIONS(1464), + [aux_sym_for_statement_token1] = ACTIONS(1464), + [aux_sym_for_statement_token2] = ACTIONS(1464), + [aux_sym_foreach_statement_token1] = ACTIONS(1464), + [aux_sym_foreach_statement_token2] = ACTIONS(1464), + [aux_sym_if_statement_token1] = ACTIONS(1464), + [aux_sym_if_statement_token2] = ACTIONS(1464), + [aux_sym_else_if_clause_token1] = ACTIONS(1464), + [aux_sym_else_clause_token1] = ACTIONS(1464), + [aux_sym_match_expression_token1] = ACTIONS(1464), + [aux_sym_match_default_expression_token1] = ACTIONS(1464), + [aux_sym_switch_statement_token1] = ACTIONS(1464), + [aux_sym_switch_block_token1] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [aux_sym_clone_expression_token1] = ACTIONS(1464), + [aux_sym_print_intrinsic_token1] = ACTIONS(1464), + [aux_sym_object_creation_expression_token1] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [aux_sym__list_destructing_token1] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_self] = ACTIONS(1464), + [anon_sym_parent] = ACTIONS(1464), + [anon_sym_POUND_LBRACK] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [aux_sym_encapsed_string_token1] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [aux_sym_string_token1] = ACTIONS(1462), + [anon_sym_LT_LT_LT] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [sym_boolean] = ACTIONS(1464), + [sym_null] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [aux_sym_yield_expression_token1] = ACTIONS(1464), + [aux_sym_include_expression_token1] = ACTIONS(1464), + [aux_sym_include_once_expression_token1] = ACTIONS(1464), + [aux_sym_require_expression_token1] = ACTIONS(1464), + [aux_sym_require_once_expression_token1] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [557] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_name] = ACTIONS(1468), + [anon_sym_QMARK_GT] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [aux_sym_function_static_declaration_token1] = ACTIONS(1468), + [aux_sym_global_declaration_token1] = ACTIONS(1468), + [aux_sym_namespace_definition_token1] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [aux_sym_trait_declaration_token1] = ACTIONS(1468), + [aux_sym_interface_declaration_token1] = ACTIONS(1468), + [aux_sym_enum_declaration_token1] = ACTIONS(1468), + [aux_sym_enum_case_token1] = ACTIONS(1468), + [aux_sym_class_declaration_token1] = ACTIONS(1468), + [aux_sym_final_modifier_token1] = ACTIONS(1468), + [aux_sym_abstract_modifier_token1] = ACTIONS(1468), + [aux_sym_readonly_modifier_token1] = ACTIONS(1468), + [aux_sym_visibility_modifier_token1] = ACTIONS(1468), + [aux_sym_visibility_modifier_token2] = ACTIONS(1468), + [aux_sym_visibility_modifier_token3] = ACTIONS(1468), + [aux_sym__arrow_function_header_token1] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1466), + [aux_sym_cast_type_token1] = ACTIONS(1468), + [aux_sym_echo_statement_token1] = ACTIONS(1468), + [anon_sym_unset] = ACTIONS(1468), + [aux_sym_declare_statement_token1] = ACTIONS(1468), + [aux_sym_declare_statement_token2] = ACTIONS(1468), + [sym_float] = ACTIONS(1468), + [aux_sym_try_statement_token1] = ACTIONS(1468), + [aux_sym_goto_statement_token1] = ACTIONS(1468), + [aux_sym_continue_statement_token1] = ACTIONS(1468), + [aux_sym_break_statement_token1] = ACTIONS(1468), + [sym_integer] = ACTIONS(1468), + [aux_sym_return_statement_token1] = ACTIONS(1468), + [aux_sym_throw_expression_token1] = ACTIONS(1468), + [aux_sym_while_statement_token1] = ACTIONS(1468), + [aux_sym_while_statement_token2] = ACTIONS(1468), + [aux_sym_do_statement_token1] = ACTIONS(1468), + [aux_sym_for_statement_token1] = ACTIONS(1468), + [aux_sym_for_statement_token2] = ACTIONS(1468), + [aux_sym_foreach_statement_token1] = ACTIONS(1468), + [aux_sym_foreach_statement_token2] = ACTIONS(1468), + [aux_sym_if_statement_token1] = ACTIONS(1468), + [aux_sym_if_statement_token2] = ACTIONS(1468), + [aux_sym_else_if_clause_token1] = ACTIONS(1468), + [aux_sym_else_clause_token1] = ACTIONS(1468), + [aux_sym_match_expression_token1] = ACTIONS(1468), + [aux_sym_match_default_expression_token1] = ACTIONS(1468), + [aux_sym_switch_statement_token1] = ACTIONS(1468), + [aux_sym_switch_block_token1] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [aux_sym_clone_expression_token1] = ACTIONS(1468), + [aux_sym_print_intrinsic_token1] = ACTIONS(1468), + [aux_sym_object_creation_expression_token1] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [aux_sym__list_destructing_token1] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_self] = ACTIONS(1468), + [anon_sym_parent] = ACTIONS(1468), + [anon_sym_POUND_LBRACK] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [aux_sym_encapsed_string_token1] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [aux_sym_string_token1] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [sym_boolean] = ACTIONS(1468), + [sym_null] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1466), + [aux_sym_yield_expression_token1] = ACTIONS(1468), + [aux_sym_include_expression_token1] = ACTIONS(1468), + [aux_sym_include_once_expression_token1] = ACTIONS(1468), + [aux_sym_require_expression_token1] = ACTIONS(1468), + [aux_sym_require_once_expression_token1] = ACTIONS(1468), + [sym_comment] = ACTIONS(3), + }, + [558] = { + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_name] = ACTIONS(1472), + [anon_sym_QMARK_GT] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [aux_sym_function_static_declaration_token1] = ACTIONS(1472), + [aux_sym_global_declaration_token1] = ACTIONS(1472), + [aux_sym_namespace_definition_token1] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [aux_sym_trait_declaration_token1] = ACTIONS(1472), + [aux_sym_interface_declaration_token1] = ACTIONS(1472), + [aux_sym_enum_declaration_token1] = ACTIONS(1472), + [aux_sym_enum_case_token1] = ACTIONS(1472), + [aux_sym_class_declaration_token1] = ACTIONS(1472), + [aux_sym_final_modifier_token1] = ACTIONS(1472), + [aux_sym_abstract_modifier_token1] = ACTIONS(1472), + [aux_sym_readonly_modifier_token1] = ACTIONS(1472), + [aux_sym_visibility_modifier_token1] = ACTIONS(1472), + [aux_sym_visibility_modifier_token2] = ACTIONS(1472), + [aux_sym_visibility_modifier_token3] = ACTIONS(1472), + [aux_sym__arrow_function_header_token1] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1470), + [aux_sym_cast_type_token1] = ACTIONS(1472), + [aux_sym_echo_statement_token1] = ACTIONS(1472), + [anon_sym_unset] = ACTIONS(1472), + [aux_sym_declare_statement_token1] = ACTIONS(1472), + [aux_sym_declare_statement_token2] = ACTIONS(1472), + [sym_float] = ACTIONS(1472), + [aux_sym_try_statement_token1] = ACTIONS(1472), + [aux_sym_goto_statement_token1] = ACTIONS(1472), + [aux_sym_continue_statement_token1] = ACTIONS(1472), + [aux_sym_break_statement_token1] = ACTIONS(1472), + [sym_integer] = ACTIONS(1472), + [aux_sym_return_statement_token1] = ACTIONS(1472), + [aux_sym_throw_expression_token1] = ACTIONS(1472), + [aux_sym_while_statement_token1] = ACTIONS(1472), + [aux_sym_while_statement_token2] = ACTIONS(1472), + [aux_sym_do_statement_token1] = ACTIONS(1472), + [aux_sym_for_statement_token1] = ACTIONS(1472), + [aux_sym_for_statement_token2] = ACTIONS(1472), + [aux_sym_foreach_statement_token1] = ACTIONS(1472), + [aux_sym_foreach_statement_token2] = ACTIONS(1472), + [aux_sym_if_statement_token1] = ACTIONS(1472), + [aux_sym_if_statement_token2] = ACTIONS(1472), + [aux_sym_else_if_clause_token1] = ACTIONS(1472), + [aux_sym_else_clause_token1] = ACTIONS(1472), + [aux_sym_match_expression_token1] = ACTIONS(1472), + [aux_sym_match_default_expression_token1] = ACTIONS(1472), + [aux_sym_switch_statement_token1] = ACTIONS(1472), + [aux_sym_switch_block_token1] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [aux_sym_clone_expression_token1] = ACTIONS(1472), + [aux_sym_print_intrinsic_token1] = ACTIONS(1472), + [aux_sym_object_creation_expression_token1] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [aux_sym__list_destructing_token1] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_self] = ACTIONS(1472), + [anon_sym_parent] = ACTIONS(1472), + [anon_sym_POUND_LBRACK] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [aux_sym_encapsed_string_token1] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [sym_boolean] = ACTIONS(1472), + [sym_null] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1470), + [aux_sym_yield_expression_token1] = ACTIONS(1472), + [aux_sym_include_expression_token1] = ACTIONS(1472), + [aux_sym_include_once_expression_token1] = ACTIONS(1472), + [aux_sym_require_expression_token1] = ACTIONS(1472), + [aux_sym_require_once_expression_token1] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [559] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_name] = ACTIONS(1476), + [anon_sym_QMARK_GT] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [aux_sym_function_static_declaration_token1] = ACTIONS(1476), + [aux_sym_global_declaration_token1] = ACTIONS(1476), + [aux_sym_namespace_definition_token1] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [aux_sym_trait_declaration_token1] = ACTIONS(1476), + [aux_sym_interface_declaration_token1] = ACTIONS(1476), + [aux_sym_enum_declaration_token1] = ACTIONS(1476), + [aux_sym_enum_case_token1] = ACTIONS(1476), + [aux_sym_class_declaration_token1] = ACTIONS(1476), + [aux_sym_final_modifier_token1] = ACTIONS(1476), + [aux_sym_abstract_modifier_token1] = ACTIONS(1476), + [aux_sym_readonly_modifier_token1] = ACTIONS(1476), + [aux_sym_visibility_modifier_token1] = ACTIONS(1476), + [aux_sym_visibility_modifier_token2] = ACTIONS(1476), + [aux_sym_visibility_modifier_token3] = ACTIONS(1476), + [aux_sym__arrow_function_header_token1] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [aux_sym_cast_type_token1] = ACTIONS(1476), + [aux_sym_echo_statement_token1] = ACTIONS(1476), + [anon_sym_unset] = ACTIONS(1476), + [aux_sym_declare_statement_token1] = ACTIONS(1476), + [aux_sym_declare_statement_token2] = ACTIONS(1476), + [sym_float] = ACTIONS(1476), + [aux_sym_try_statement_token1] = ACTIONS(1476), + [aux_sym_goto_statement_token1] = ACTIONS(1476), + [aux_sym_continue_statement_token1] = ACTIONS(1476), + [aux_sym_break_statement_token1] = ACTIONS(1476), + [sym_integer] = ACTIONS(1476), + [aux_sym_return_statement_token1] = ACTIONS(1476), + [aux_sym_throw_expression_token1] = ACTIONS(1476), + [aux_sym_while_statement_token1] = ACTIONS(1476), + [aux_sym_while_statement_token2] = ACTIONS(1476), + [aux_sym_do_statement_token1] = ACTIONS(1476), + [aux_sym_for_statement_token1] = ACTIONS(1476), + [aux_sym_for_statement_token2] = ACTIONS(1476), + [aux_sym_foreach_statement_token1] = ACTIONS(1476), + [aux_sym_foreach_statement_token2] = ACTIONS(1476), + [aux_sym_if_statement_token1] = ACTIONS(1476), + [aux_sym_if_statement_token2] = ACTIONS(1476), + [aux_sym_else_if_clause_token1] = ACTIONS(1476), + [aux_sym_else_clause_token1] = ACTIONS(1476), + [aux_sym_match_expression_token1] = ACTIONS(1476), + [aux_sym_match_default_expression_token1] = ACTIONS(1476), + [aux_sym_switch_statement_token1] = ACTIONS(1476), + [aux_sym_switch_block_token1] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [aux_sym_clone_expression_token1] = ACTIONS(1476), + [aux_sym_print_intrinsic_token1] = ACTIONS(1476), + [aux_sym_object_creation_expression_token1] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [aux_sym__list_destructing_token1] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_self] = ACTIONS(1476), + [anon_sym_parent] = ACTIONS(1476), + [anon_sym_POUND_LBRACK] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [aux_sym_encapsed_string_token1] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [aux_sym_string_token1] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_boolean] = ACTIONS(1476), + [sym_null] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [aux_sym_yield_expression_token1] = ACTIONS(1476), + [aux_sym_include_expression_token1] = ACTIONS(1476), + [aux_sym_include_once_expression_token1] = ACTIONS(1476), + [aux_sym_require_expression_token1] = ACTIONS(1476), + [aux_sym_require_once_expression_token1] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [560] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_name] = ACTIONS(1480), + [anon_sym_QMARK_GT] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [aux_sym_function_static_declaration_token1] = ACTIONS(1480), + [aux_sym_global_declaration_token1] = ACTIONS(1480), + [aux_sym_namespace_definition_token1] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [aux_sym_trait_declaration_token1] = ACTIONS(1480), + [aux_sym_interface_declaration_token1] = ACTIONS(1480), + [aux_sym_enum_declaration_token1] = ACTIONS(1480), + [aux_sym_enum_case_token1] = ACTIONS(1480), + [aux_sym_class_declaration_token1] = ACTIONS(1480), + [aux_sym_final_modifier_token1] = ACTIONS(1480), + [aux_sym_abstract_modifier_token1] = ACTIONS(1480), + [aux_sym_readonly_modifier_token1] = ACTIONS(1480), + [aux_sym_visibility_modifier_token1] = ACTIONS(1480), + [aux_sym_visibility_modifier_token2] = ACTIONS(1480), + [aux_sym_visibility_modifier_token3] = ACTIONS(1480), + [aux_sym__arrow_function_header_token1] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [aux_sym_cast_type_token1] = ACTIONS(1480), + [aux_sym_echo_statement_token1] = ACTIONS(1480), + [anon_sym_unset] = ACTIONS(1480), + [aux_sym_declare_statement_token1] = ACTIONS(1480), + [aux_sym_declare_statement_token2] = ACTIONS(1480), + [sym_float] = ACTIONS(1480), + [aux_sym_try_statement_token1] = ACTIONS(1480), + [aux_sym_goto_statement_token1] = ACTIONS(1480), + [aux_sym_continue_statement_token1] = ACTIONS(1480), + [aux_sym_break_statement_token1] = ACTIONS(1480), + [sym_integer] = ACTIONS(1480), + [aux_sym_return_statement_token1] = ACTIONS(1480), + [aux_sym_throw_expression_token1] = ACTIONS(1480), + [aux_sym_while_statement_token1] = ACTIONS(1480), + [aux_sym_while_statement_token2] = ACTIONS(1480), + [aux_sym_do_statement_token1] = ACTIONS(1480), + [aux_sym_for_statement_token1] = ACTIONS(1480), + [aux_sym_for_statement_token2] = ACTIONS(1480), + [aux_sym_foreach_statement_token1] = ACTIONS(1480), + [aux_sym_foreach_statement_token2] = ACTIONS(1480), + [aux_sym_if_statement_token1] = ACTIONS(1480), + [aux_sym_if_statement_token2] = ACTIONS(1480), + [aux_sym_else_if_clause_token1] = ACTIONS(1480), + [aux_sym_else_clause_token1] = ACTIONS(1480), + [aux_sym_match_expression_token1] = ACTIONS(1480), + [aux_sym_match_default_expression_token1] = ACTIONS(1480), + [aux_sym_switch_statement_token1] = ACTIONS(1480), + [aux_sym_switch_block_token1] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [aux_sym_clone_expression_token1] = ACTIONS(1480), + [aux_sym_print_intrinsic_token1] = ACTIONS(1480), + [aux_sym_object_creation_expression_token1] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [aux_sym__list_destructing_token1] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_self] = ACTIONS(1480), + [anon_sym_parent] = ACTIONS(1480), + [anon_sym_POUND_LBRACK] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [aux_sym_encapsed_string_token1] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [aux_sym_string_token1] = ACTIONS(1478), + [anon_sym_LT_LT_LT] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [sym_boolean] = ACTIONS(1480), + [sym_null] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [aux_sym_yield_expression_token1] = ACTIONS(1480), + [aux_sym_include_expression_token1] = ACTIONS(1480), + [aux_sym_include_once_expression_token1] = ACTIONS(1480), + [aux_sym_require_expression_token1] = ACTIONS(1480), + [aux_sym_require_once_expression_token1] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [561] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_name] = ACTIONS(1484), + [anon_sym_QMARK_GT] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [aux_sym_function_static_declaration_token1] = ACTIONS(1484), + [aux_sym_global_declaration_token1] = ACTIONS(1484), + [aux_sym_namespace_definition_token1] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [aux_sym_trait_declaration_token1] = ACTIONS(1484), + [aux_sym_interface_declaration_token1] = ACTIONS(1484), + [aux_sym_enum_declaration_token1] = ACTIONS(1484), + [aux_sym_enum_case_token1] = ACTIONS(1484), + [aux_sym_class_declaration_token1] = ACTIONS(1484), + [aux_sym_final_modifier_token1] = ACTIONS(1484), + [aux_sym_abstract_modifier_token1] = ACTIONS(1484), + [aux_sym_readonly_modifier_token1] = ACTIONS(1484), + [aux_sym_visibility_modifier_token1] = ACTIONS(1484), + [aux_sym_visibility_modifier_token2] = ACTIONS(1484), + [aux_sym_visibility_modifier_token3] = ACTIONS(1484), + [aux_sym__arrow_function_header_token1] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1482), + [aux_sym_cast_type_token1] = ACTIONS(1484), + [aux_sym_echo_statement_token1] = ACTIONS(1484), + [anon_sym_unset] = ACTIONS(1484), + [aux_sym_declare_statement_token1] = ACTIONS(1484), + [aux_sym_declare_statement_token2] = ACTIONS(1484), + [sym_float] = ACTIONS(1484), + [aux_sym_try_statement_token1] = ACTIONS(1484), + [aux_sym_goto_statement_token1] = ACTIONS(1484), + [aux_sym_continue_statement_token1] = ACTIONS(1484), + [aux_sym_break_statement_token1] = ACTIONS(1484), + [sym_integer] = ACTIONS(1484), + [aux_sym_return_statement_token1] = ACTIONS(1484), + [aux_sym_throw_expression_token1] = ACTIONS(1484), + [aux_sym_while_statement_token1] = ACTIONS(1484), + [aux_sym_while_statement_token2] = ACTIONS(1484), + [aux_sym_do_statement_token1] = ACTIONS(1484), + [aux_sym_for_statement_token1] = ACTIONS(1484), + [aux_sym_for_statement_token2] = ACTIONS(1484), + [aux_sym_foreach_statement_token1] = ACTIONS(1484), + [aux_sym_foreach_statement_token2] = ACTIONS(1484), + [aux_sym_if_statement_token1] = ACTIONS(1484), + [aux_sym_if_statement_token2] = ACTIONS(1484), + [aux_sym_else_if_clause_token1] = ACTIONS(1484), + [aux_sym_else_clause_token1] = ACTIONS(1484), + [aux_sym_match_expression_token1] = ACTIONS(1484), + [aux_sym_match_default_expression_token1] = ACTIONS(1484), + [aux_sym_switch_statement_token1] = ACTIONS(1484), + [aux_sym_switch_block_token1] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [aux_sym_clone_expression_token1] = ACTIONS(1484), + [aux_sym_print_intrinsic_token1] = ACTIONS(1484), + [aux_sym_object_creation_expression_token1] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [aux_sym__list_destructing_token1] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_self] = ACTIONS(1484), + [anon_sym_parent] = ACTIONS(1484), + [anon_sym_POUND_LBRACK] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [aux_sym_encapsed_string_token1] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [aux_sym_string_token1] = ACTIONS(1482), + [anon_sym_LT_LT_LT] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [sym_boolean] = ACTIONS(1484), + [sym_null] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1482), + [aux_sym_yield_expression_token1] = ACTIONS(1484), + [aux_sym_include_expression_token1] = ACTIONS(1484), + [aux_sym_include_once_expression_token1] = ACTIONS(1484), + [aux_sym_require_expression_token1] = ACTIONS(1484), + [aux_sym_require_once_expression_token1] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [562] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_name] = ACTIONS(1464), + [anon_sym_QMARK_GT] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [aux_sym_function_static_declaration_token1] = ACTIONS(1464), + [aux_sym_global_declaration_token1] = ACTIONS(1464), + [aux_sym_namespace_definition_token1] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [aux_sym_trait_declaration_token1] = ACTIONS(1464), + [aux_sym_interface_declaration_token1] = ACTIONS(1464), + [aux_sym_enum_declaration_token1] = ACTIONS(1464), + [aux_sym_enum_case_token1] = ACTIONS(1464), + [aux_sym_class_declaration_token1] = ACTIONS(1464), + [aux_sym_final_modifier_token1] = ACTIONS(1464), + [aux_sym_abstract_modifier_token1] = ACTIONS(1464), + [aux_sym_readonly_modifier_token1] = ACTIONS(1464), + [aux_sym_visibility_modifier_token1] = ACTIONS(1464), + [aux_sym_visibility_modifier_token2] = ACTIONS(1464), + [aux_sym_visibility_modifier_token3] = ACTIONS(1464), + [aux_sym__arrow_function_header_token1] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [aux_sym_cast_type_token1] = ACTIONS(1464), + [aux_sym_echo_statement_token1] = ACTIONS(1464), + [anon_sym_unset] = ACTIONS(1464), + [aux_sym_declare_statement_token1] = ACTIONS(1464), + [aux_sym_declare_statement_token2] = ACTIONS(1464), + [sym_float] = ACTIONS(1464), + [aux_sym_try_statement_token1] = ACTIONS(1464), + [aux_sym_goto_statement_token1] = ACTIONS(1464), + [aux_sym_continue_statement_token1] = ACTIONS(1464), + [aux_sym_break_statement_token1] = ACTIONS(1464), + [sym_integer] = ACTIONS(1464), + [aux_sym_return_statement_token1] = ACTIONS(1464), + [aux_sym_throw_expression_token1] = ACTIONS(1464), + [aux_sym_while_statement_token1] = ACTIONS(1464), + [aux_sym_while_statement_token2] = ACTIONS(1464), + [aux_sym_do_statement_token1] = ACTIONS(1464), + [aux_sym_for_statement_token1] = ACTIONS(1464), + [aux_sym_for_statement_token2] = ACTIONS(1464), + [aux_sym_foreach_statement_token1] = ACTIONS(1464), + [aux_sym_foreach_statement_token2] = ACTIONS(1464), + [aux_sym_if_statement_token1] = ACTIONS(1464), + [aux_sym_if_statement_token2] = ACTIONS(1464), + [aux_sym_else_if_clause_token1] = ACTIONS(1464), + [aux_sym_else_clause_token1] = ACTIONS(1464), + [aux_sym_match_expression_token1] = ACTIONS(1464), + [aux_sym_match_default_expression_token1] = ACTIONS(1464), + [aux_sym_switch_statement_token1] = ACTIONS(1464), + [aux_sym_switch_block_token1] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [aux_sym_clone_expression_token1] = ACTIONS(1464), + [aux_sym_print_intrinsic_token1] = ACTIONS(1464), + [aux_sym_object_creation_expression_token1] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [aux_sym__list_destructing_token1] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_self] = ACTIONS(1464), + [anon_sym_parent] = ACTIONS(1464), + [anon_sym_POUND_LBRACK] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [aux_sym_encapsed_string_token1] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [aux_sym_string_token1] = ACTIONS(1462), + [anon_sym_LT_LT_LT] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [sym_boolean] = ACTIONS(1464), + [sym_null] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [aux_sym_yield_expression_token1] = ACTIONS(1464), + [aux_sym_include_expression_token1] = ACTIONS(1464), + [aux_sym_include_once_expression_token1] = ACTIONS(1464), + [aux_sym_require_expression_token1] = ACTIONS(1464), + [aux_sym_require_once_expression_token1] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [563] = { + [sym_name] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1488), + [aux_sym_function_static_declaration_token1] = ACTIONS(1486), + [aux_sym_global_declaration_token1] = ACTIONS(1486), + [aux_sym_namespace_definition_token1] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [aux_sym_trait_declaration_token1] = ACTIONS(1486), + [aux_sym_interface_declaration_token1] = ACTIONS(1486), + [aux_sym_enum_declaration_token1] = ACTIONS(1486), + [anon_sym_COLON] = ACTIONS(1488), + [aux_sym_class_declaration_token1] = ACTIONS(1486), + [aux_sym_final_modifier_token1] = ACTIONS(1486), + [aux_sym_abstract_modifier_token1] = ACTIONS(1486), + [aux_sym_readonly_modifier_token1] = ACTIONS(1486), + [aux_sym_visibility_modifier_token1] = ACTIONS(1486), + [aux_sym_visibility_modifier_token2] = ACTIONS(1486), + [aux_sym_visibility_modifier_token3] = ACTIONS(1486), + [aux_sym__arrow_function_header_token1] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [aux_sym_cast_type_token1] = ACTIONS(1486), + [aux_sym_echo_statement_token1] = ACTIONS(1486), + [anon_sym_unset] = ACTIONS(1486), + [aux_sym_declare_statement_token1] = ACTIONS(1486), + [sym_float] = ACTIONS(1486), + [aux_sym_try_statement_token1] = ACTIONS(1486), + [aux_sym_goto_statement_token1] = ACTIONS(1486), + [aux_sym_continue_statement_token1] = ACTIONS(1486), + [aux_sym_break_statement_token1] = ACTIONS(1486), + [sym_integer] = ACTIONS(1486), + [aux_sym_return_statement_token1] = ACTIONS(1486), + [aux_sym_throw_expression_token1] = ACTIONS(1486), + [aux_sym_while_statement_token1] = ACTIONS(1486), + [aux_sym_do_statement_token1] = ACTIONS(1486), + [aux_sym_for_statement_token1] = ACTIONS(1486), + [aux_sym_foreach_statement_token1] = ACTIONS(1486), + [aux_sym_if_statement_token1] = ACTIONS(1486), + [aux_sym_match_expression_token1] = ACTIONS(1486), + [aux_sym_switch_statement_token1] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [aux_sym_clone_expression_token1] = ACTIONS(1486), + [aux_sym_print_intrinsic_token1] = ACTIONS(1486), + [aux_sym_object_creation_expression_token1] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym__list_destructing_token1] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_self] = ACTIONS(1486), + [anon_sym_parent] = ACTIONS(1486), + [anon_sym_POUND_LBRACK] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [aux_sym_encapsed_string_token1] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [aux_sym_string_token1] = ACTIONS(1488), + [anon_sym_LT_LT_LT] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [sym_boolean] = ACTIONS(1486), + [sym_null] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1488), + [aux_sym_yield_expression_token1] = ACTIONS(1486), + [aux_sym_include_expression_token1] = ACTIONS(1486), + [aux_sym_include_once_expression_token1] = ACTIONS(1486), + [aux_sym_require_expression_token1] = ACTIONS(1486), + [aux_sym_require_once_expression_token1] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [564] = { + [sym_qualified_name] = STATE(818), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1126), + [sym_throw_expression] = STATE(1126), + [sym__primary_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(819), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1126), + [sym_anonymous_function_creation_expression] = STATE(1126), + [sym_object_creation_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_cast_variable] = STATE(848), + [sym_member_access_expression] = STATE(848), + [sym_nullsafe_member_access_expression] = STATE(848), + [sym_scoped_property_access_expression] = STATE(848), + [sym_function_call_expression] = STATE(777), + [sym_scoped_call_expression] = STATE(777), + [sym__scope_resolution_qualifier] = STATE(2503), + [sym_relative_scope] = STATE(2503), + [sym_member_call_expression] = STATE(777), + [sym_nullsafe_member_call_expression] = STATE(777), + [sym_subscript_expression] = STATE(777), + [sym__dereferencable_expression] = STATE(1687), + [sym_array_creation_expression] = STATE(819), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1723), + [sym_encapsed_string] = STATE(819), + [sym_string] = STATE(819), + [sym_heredoc] = STATE(819), + [sym_nowdoc] = STATE(819), + [sym_shell_command_expression] = STATE(1126), + [sym__string] = STATE(819), + [sym_dynamic_variable_name] = STATE(777), + [sym_variable_name] = STATE(777), + [sym__reserved_identifier] = STATE(1528), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(1490), + [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(1492), + [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(1116), + [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(1494), + [sym_comment] = ACTIONS(3), + }, + [565] = { + [sym_qualified_name] = STATE(712), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__primary_expression] = STATE(913), + [sym_parenthesized_expression] = STATE(710), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_variable] = STATE(692), + [sym_member_access_expression] = STATE(692), + [sym_nullsafe_member_access_expression] = STATE(692), + [sym_scoped_property_access_expression] = STATE(692), + [sym_function_call_expression] = STATE(651), + [sym_scoped_call_expression] = STATE(651), + [sym__scope_resolution_qualifier] = STATE(2586), + [sym_relative_scope] = STATE(2586), + [sym_member_call_expression] = STATE(651), + [sym_nullsafe_member_call_expression] = STATE(651), + [sym_subscript_expression] = STATE(651), + [sym__dereferencable_expression] = STATE(1623), + [sym_array_creation_expression] = STATE(710), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(710), + [sym_string] = STATE(710), + [sym_heredoc] = STATE(710), + [sym_nowdoc] = STATE(710), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(710), + [sym_dynamic_variable_name] = STATE(651), + [sym_variable_name] = STATE(651), + [sym__reserved_identifier] = STATE(1529), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(1496), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1498), + [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(1026), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [566] = { + [sym_qualified_name] = STATE(712), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2436), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__primary_expression] = STATE(913), + [sym_parenthesized_expression] = STATE(710), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_variable] = STATE(692), + [sym_member_access_expression] = STATE(692), + [sym_nullsafe_member_access_expression] = STATE(692), + [sym_scoped_property_access_expression] = STATE(692), + [sym_function_call_expression] = STATE(651), + [sym_scoped_call_expression] = STATE(651), + [sym__scope_resolution_qualifier] = STATE(2586), + [sym_relative_scope] = STATE(2586), + [sym_member_call_expression] = STATE(651), + [sym_nullsafe_member_call_expression] = STATE(651), + [sym_subscript_expression] = STATE(651), + [sym__dereferencable_expression] = STATE(1623), + [sym_array_creation_expression] = STATE(710), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(710), + [sym_string] = STATE(710), + [sym_heredoc] = STATE(710), + [sym_nowdoc] = STATE(710), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(710), + [sym_dynamic_variable_name] = STATE(651), + [sym_variable_name] = STATE(651), + [sym__reserved_identifier] = STATE(1529), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(1496), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1498), + [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(1026), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [567] = { + [sym_qualified_name] = STATE(712), + [sym_namespace_name_as_prefix] = STATE(2421), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2401), + [sym_arrow_function] = STATE(908), + [sym_throw_expression] = STATE(908), + [sym__primary_expression] = STATE(913), + [sym_parenthesized_expression] = STATE(710), + [sym_class_constant_access_expression] = STATE(766), + [sym_print_intrinsic] = STATE(908), + [sym_anonymous_function_creation_expression] = STATE(908), + [sym_object_creation_expression] = STATE(908), + [sym_update_expression] = STATE(908), + [sym_cast_variable] = STATE(692), + [sym_member_access_expression] = STATE(692), + [sym_nullsafe_member_access_expression] = STATE(692), + [sym_scoped_property_access_expression] = STATE(692), + [sym_function_call_expression] = STATE(651), + [sym_scoped_call_expression] = STATE(651), + [sym__scope_resolution_qualifier] = STATE(2586), + [sym_relative_scope] = STATE(2586), + [sym_member_call_expression] = STATE(651), + [sym_nullsafe_member_call_expression] = STATE(651), + [sym_subscript_expression] = STATE(651), + [sym__dereferencable_expression] = STATE(1623), + [sym_array_creation_expression] = STATE(710), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1748), + [sym_encapsed_string] = STATE(710), + [sym_string] = STATE(710), + [sym_heredoc] = STATE(710), + [sym_nowdoc] = STATE(710), + [sym_shell_command_expression] = STATE(908), + [sym__string] = STATE(710), + [sym_dynamic_variable_name] = STATE(651), + [sym_variable_name] = STATE(651), + [sym__reserved_identifier] = STATE(1529), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(1496), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1498), + [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(1026), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(1506), 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), 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(1506), 1, + sym_comment, + 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), 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(1506), 1, + sym_comment, + 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), 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(1506), 1, + sym_comment, + 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), 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(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + 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), 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(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_arguments, + 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), 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] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(583), 1, + sym_arguments, + 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), 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, + [499] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1538), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1544), 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(1534), 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(1536), 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, + [580] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(580), 1, + sym_arguments, + ACTIONS(1548), 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(1546), 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(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1552), 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(1550), 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(1506), 1, + sym_comment, + ACTIONS(1556), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1554), 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(1506), 1, + sym_comment, + ACTIONS(1560), 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(1558), 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(1506), 1, + sym_comment, + ACTIONS(1564), 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(1562), 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(1506), 1, + sym_comment, + ACTIONS(1568), 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(1566), 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(1506), 1, + sym_comment, + ACTIONS(1572), 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(1570), 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(1506), 1, + sym_comment, + ACTIONS(1576), 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(1574), 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(1506), 1, + sym_comment, + ACTIONS(1580), 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(1578), 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(1506), 1, + sym_comment, + ACTIONS(1584), 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(1582), 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(1506), 1, + sym_comment, + ACTIONS(1588), 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(1586), 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(1506), 1, + sym_comment, + ACTIONS(1592), 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(1590), 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(1506), 1, + sym_comment, + ACTIONS(1596), 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(1594), 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(1506), 1, + sym_comment, + ACTIONS(1600), 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(1598), 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(1506), 1, + sym_comment, + ACTIONS(1604), 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(1602), 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] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1538), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1544), 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(1534), 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(1536), 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, + [1685] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1608), 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(1534), 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(1536), 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(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1608), 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(1534), 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(1536), 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(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1614), 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(1534), 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(1536), 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(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1616), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1614), 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(1534), 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(1536), 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] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1608), 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(1534), 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(1536), 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, + [2072] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1618), 1, + anon_sym_EQ, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(622), 1, + sym_arguments, + ACTIONS(1622), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1624), 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(1534), 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(1536), 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, + [2149] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1608), 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(1534), 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(1536), 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, + [2222] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1626), 1, + anon_sym_EQ, + STATE(622), 1, + sym_arguments, + ACTIONS(1622), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1624), 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(1534), 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(1536), 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, + [2299] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1538), 1, + anon_sym_EQ, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(622), 1, + sym_arguments, + ACTIONS(1622), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1544), 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(1534), 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(1536), 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, + [2376] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(626), 1, + sym_arguments, + 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), 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, + [2445] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(614), 1, + sym_arguments, + ACTIONS(1552), 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(1550), 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, + [2514] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(615), 1, + sym_arguments, + 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), 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, + [2583] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(610), 1, + sym_arguments, + 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), 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, + [2652] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(616), 1, + sym_arguments, + ACTIONS(1548), 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(1546), 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, + [2721] = 12, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1628), 1, + anon_sym_RPAREN, + STATE(587), 1, + sym_arguments, + STATE(1942), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1608), 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(1536), 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, + [2804] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1538), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1544), 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(1536), 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] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1612), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1614), 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(1534), 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(1536), 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, + [2953] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1630), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1614), 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(1536), 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, + [3031] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1576), 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(1574), 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, + [3095] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [3159] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1572), 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(1570), 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, + [3223] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1600), 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(1598), 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, + [3287] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1568), 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(1566), 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, + [3351] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1580), 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(1578), 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] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1564), 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(1562), 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, + [3479] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1635), 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(1534), 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(1536), 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, + [3555] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1637), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1635), 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(1534), 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(1536), 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, + [3631] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [3695] = 3, + ACTIONS(1506), 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, + [3759] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1596), 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(1594), 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, + [3823] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1592), 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(1590), 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, + [3887] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1588), 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(1586), 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, + [3951] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 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(1582), 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, + [4015] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1616), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1614), 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(1534), 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(1536), 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, + [4087] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1560), 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(1558), 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, + [4151] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1556), 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(1554), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [4215] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1639), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1608), 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(1536), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [4293] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [4357] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1608), 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(1536), 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, + [4435] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1604), 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(1602), 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(1506), 1, + sym_comment, + ACTIONS(1538), 1, + anon_sym_EQ, + ACTIONS(1622), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1544), 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(1534), 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(1536), 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(1506), 1, + sym_comment, + ACTIONS(1618), 1, + anon_sym_EQ, + ACTIONS(1622), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1624), 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(1534), 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(1536), 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] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1643), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1614), 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(1536), 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, + [4718] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1538), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1544), 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(1536), 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, + [4789] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1626), 1, + anon_sym_EQ, + ACTIONS(1622), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1624), 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(1534), 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(1536), 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(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1628), 1, + anon_sym_RPAREN, + STATE(1942), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1608), 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(1536), 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(1506), 1, + sym_comment, + ACTIONS(1612), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1630), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1614), 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(1536), 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(1506), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1639), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1608), 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(1536), 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] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1608), 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(1536), 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, + [5153] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1635), 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(1534), 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(1536), 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, + [5223] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1637), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1635), 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(1534), 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(1536), 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(1506), 1, + sym_comment, + ACTIONS(1612), 1, + anon_sym_EQ, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1643), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1534), 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(1614), 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(1536), 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] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(658), 1, + sym_arguments, + 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), 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, + [5423] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1600), 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(1598), 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, + [5478] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(671), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [5543] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(673), 1, + sym_arguments, + ACTIONS(1548), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 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, + [5602] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(587), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [5667] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(668), 1, + sym_arguments, + ACTIONS(1552), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 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, + [5726] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(671), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1544), 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, + [5787] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(671), 1, + sym_arguments, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [5850] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(665), 1, + sym_arguments, + 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), 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, + [5909] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(666), 1, + sym_arguments, + 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), 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, + [5968] = 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(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1653), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1655), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1659), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1661), 1, + sym_var_modifier, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1514), 1, + sym_qualified_name, + STATE(1692), 1, + sym_variable_name, + STATE(1813), 1, + sym_property_element, + STATE(1823), 1, + sym__function_definition_header, + STATE(2027), 1, + sym__type, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1628), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(1663), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1512), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1069), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(1657), 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, + [6065] = 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(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1653), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1655), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1659), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1661), 1, + sym_var_modifier, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1514), 1, + sym_qualified_name, + STATE(1692), 1, + sym_variable_name, + STATE(1806), 1, + sym_property_element, + STATE(1808), 1, + sym__function_definition_header, + STATE(2079), 1, + sym__type, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1628), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(1663), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1512), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1069), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(1657), 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, + [6162] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(739), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 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, + [6227] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(587), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1677), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [6292] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1560), 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(1558), 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] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1556), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1554), 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, + [6400] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [6454] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1679), 1, + sym_name, + ACTIONS(1683), 1, + aux_sym_class_declaration_token1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + STATE(2533), 1, + sym_attribute_list, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 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(852), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(2590), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1681), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(826), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(853), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1659), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1542), 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, + [6550] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1596), 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(1594), 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] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + ACTIONS(1691), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1689), 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, + [6662] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1693), 1, + sym_name, + ACTIONS(1695), 1, + aux_sym_class_declaration_token1, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_attribute_list, + STATE(2571), 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(694), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(2583), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(679), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(695), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1640), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1542), 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, + [6758] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1580), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1578), 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, + [6812] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1576), 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(1574), 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, + [6866] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1572), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1570), 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, + [6920] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1568), 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(1566), 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, + [6974] = 3, + ACTIONS(1506), 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, + [7028] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [7082] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1592), 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(1590), 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, + [7136] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1600), 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(1598), 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, + [7190] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1564), 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(1562), 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, + [7244] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1701), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1699), 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, + [7298] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [7352] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 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(1582), 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, + [7406] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1588), 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(1586), 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, + [7460] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1604), 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(1602), 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, + [7514] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(739), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 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, + [7573] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [7632] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(580), 1, + sym_arguments, + ACTIONS(1548), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [7687] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1544), 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, + [7746] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(581), 1, + sym_arguments, + ACTIONS(1552), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [7801] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(583), 1, + sym_arguments, + 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, + [7856] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(584), 1, + sym_arguments, + 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), 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, + [7911] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1703), 1, + sym_name, + ACTIONS(1705), 1, + anon_sym_RBRACE, + STATE(688), 1, + aux_sym_use_list_repeat1, + STATE(1522), 1, + sym_class_constant_access_expression, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2117), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1648), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1542), 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, + [8002] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(579), 1, + sym_arguments, + 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, + [8057] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1707), 1, + sym_name, + ACTIONS(1713), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1716), 1, + anon_sym_BSLASH, + ACTIONS(1719), 1, + anon_sym_RBRACE, + ACTIONS(1721), 1, + anon_sym_LPAREN, + ACTIONS(1724), 1, + aux_sym_cast_type_token1, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1736), 1, + anon_sym_LT_LT_LT, + ACTIONS(1739), 1, + anon_sym_DOLLAR, + STATE(688), 1, + aux_sym_use_list_repeat1, + STATE(1522), 1, + sym_class_constant_access_expression, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(1730), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(1733), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2117), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1710), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1648), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1542), 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, + [8148] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [8207] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1744), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, + anon_sym_RPAREN, + ACTIONS(1748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1750), 1, + anon_sym_QMARK, + ACTIONS(1752), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(968), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1629), 1, + sym__type, + STATE(1881), 1, + sym_reference_modifier, + STATE(1883), 1, + sym_variable_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1628), 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(1864), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1606), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [8304] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + sym_name, + STATE(2153), 1, + sym_by_ref, + STATE(2154), 1, + sym__list_destructing, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1648), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1517), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1433), 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(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [8399] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1542), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [8456] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + sym_name, + STATE(1996), 1, + sym__list_destructing, + STATE(2000), 1, + sym_by_ref, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1648), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1502), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1421), 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(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [8551] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(739), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 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, + [8610] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1758), 1, + anon_sym_LPAREN, + STATE(918), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 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, + [8669] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1762), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1760), 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, + [8728] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1771), 1, + anon_sym_EQ, + ACTIONS(1768), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1766), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1764), 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, + [8785] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(658), 1, + sym_arguments, + ACTIONS(1691), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1689), 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, + [8842] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1750), 1, + anon_sym_QMARK, + ACTIONS(1752), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(1773), 1, + anon_sym_COMMA, + ACTIONS(1775), 1, + anon_sym_RPAREN, + STATE(968), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1629), 1, + sym__type, + STATE(1881), 1, + sym_reference_modifier, + STATE(1883), 1, + sym_variable_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1628), 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(1882), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1606), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [8939] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1677), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [8998] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1677), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [9057] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(749), 1, + sym_arguments, + ACTIONS(1548), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 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, + [9114] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1779), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1777), 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, + [9173] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(580), 1, + sym_arguments, + ACTIONS(1548), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 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, + [9230] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1552), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 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, + [9287] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(583), 1, + sym_arguments, + 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), 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, + [9344] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_arguments, + 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_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, + [9401] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + 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), 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, + [9458] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1544), 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, + [9513] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(671), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [9572] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(750), 1, + sym_arguments, + ACTIONS(1552), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 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, + [9629] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(671), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [9688] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1703), 1, + sym_name, + ACTIONS(1781), 1, + anon_sym_RBRACE, + STATE(686), 1, + aux_sym_use_list_repeat1, + STATE(1522), 1, + sym_class_constant_access_expression, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2117), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1648), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1542), 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, + [9779] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(753), 1, + sym_arguments, + 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), 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, + [9836] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(761), 1, + sym_arguments, + 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_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, + [9893] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_arguments, + 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), 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(1506), 1, + sym_comment, + ACTIONS(1785), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1783), 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(1506), 1, + sym_comment, + ACTIONS(1588), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1586), 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(1506), 1, + sym_comment, + ACTIONS(1789), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1787), 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(1506), 1, + sym_comment, + ACTIONS(1793), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1791), 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(1506), 1, + sym_comment, + 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, + [10210] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [10262] = 3, + ACTIONS(1506), 1, + sym_comment, + 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(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, + [10314] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [10366] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1592), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1590), 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, + [10418] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [10470] = 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(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + sym_name, + STATE(2238), 1, + sym_by_ref, + STATE(2240), 1, + sym__array_destructing, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1648), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1541), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1438), 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(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [10562] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [10614] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1750), 1, + anon_sym_QMARK, + ACTIONS(1752), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(1815), 1, + anon_sym_RPAREN, + STATE(968), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1629), 1, + sym__type, + STATE(1881), 1, + sym_reference_modifier, + STATE(1883), 1, + sym_variable_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1628), 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(2306), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1606), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [10708] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1819), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1817), 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, + [10760] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [10812] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1827), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [10864] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1750), 1, + anon_sym_QMARK, + ACTIONS(1752), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(1829), 1, + anon_sym_RPAREN, + STATE(968), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1629), 1, + sym__type, + STATE(1881), 1, + sym_reference_modifier, + STATE(1883), 1, + sym_variable_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1628), 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(2306), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1606), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [10958] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1833), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1831), 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] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1556), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1554), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [11062] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1560), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1558), 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, + [11114] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1766), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1764), 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, + [11166] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1604), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1602), 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, + [11218] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1590), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1837), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1835), 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, + [11272] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1750), 1, + anon_sym_QMARK, + ACTIONS(1752), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(1839), 1, + anon_sym_RPAREN, + STATE(968), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1629), 1, + sym__type, + STATE(1881), 1, + sym_reference_modifier, + STATE(1883), 1, + sym_variable_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1628), 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(2306), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1606), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [11366] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1843), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1841), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [11418] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1847), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1845), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [11470] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [11522] = 3, + ACTIONS(1506), 1, + sym_comment, + 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), 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, + [11574] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1851), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1849), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [11626] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1582), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11678] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1855), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1853), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [11730] = 3, + ACTIONS(1506), 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, + [11782] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1564), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1562), 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, + [11834] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1568), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1566), 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, + [11886] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1596), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1594), 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, + [11938] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1572), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1570), 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, + [11990] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1576), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1574), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [12042] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1859), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1857), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_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, + [12094] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1861), 1, + anon_sym_COLON_COLON, + ACTIONS(1600), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1598), 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, + [12148] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [12200] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1865), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_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), 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, + [12252] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1869), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_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), 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, + [12304] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1873), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_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), 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, + [12356] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1750), 1, + anon_sym_QMARK, + ACTIONS(1752), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(1875), 1, + anon_sym_RPAREN, + STATE(968), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1629), 1, + sym__type, + STATE(1881), 1, + sym_reference_modifier, + STATE(1883), 1, + sym_variable_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1628), 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(2306), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1606), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [12450] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1580), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1578), 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, + [12502] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1544), 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, + [12555] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(996), 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(994), 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, + [12606] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(782), 1, + sym_arguments, + 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), 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, + [12661] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1000), 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(998), 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, + [12712] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [12765] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + ACTIONS(1552), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 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, + [12820] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(783), 1, + sym_arguments, + ACTIONS(1548), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 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, + [12875] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1750), 1, + anon_sym_QMARK, + ACTIONS(1752), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(968), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1629), 1, + sym__type, + STATE(1881), 1, + sym_reference_modifier, + STATE(1883), 1, + sym_variable_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1628), 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(2306), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1606), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [12966] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(784), 1, + sym_arguments, + 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), 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, + [13021] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(786), 1, + sym_arguments, + 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), 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, + [13076] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1768), 1, + anon_sym_RPAREN, + ACTIONS(1771), 1, + anon_sym_EQ, + ACTIONS(1766), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1764), 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, + [13131] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1677), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [13184] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(622), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [13245] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1544), 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, + [13302] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1762), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1760), 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, + [13355] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1622), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [13414] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(870), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 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, + [13475] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(587), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1677), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [13536] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [13597] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1779), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1777), 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, + [13650] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1576), 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(1574), 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, + [13700] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1564), 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(1562), 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, + [13750] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1580), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1578), 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, + [13800] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1596), 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(1594), 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, + [13850] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1560), 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(1558), 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, + [13900] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1600), 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(1598), 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, + [13950] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1568), 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(1566), 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, + [14000] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [14050] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1572), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1570), 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, + [14100] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 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(1582), 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, + [14150] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1588), 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(1586), 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, + [14200] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1604), 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(1602), 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, + [14250] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1592), 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(1590), 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, + [14300] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1881), 1, + anon_sym_COLON, + STATE(622), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [14362] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1883), 1, + anon_sym_COLON, + STATE(622), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [14424] = 3, + ACTIONS(1506), 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, + [14474] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [14524] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [14574] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1885), 1, + anon_sym_COLON, + STATE(587), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [14636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1889), 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(1887), 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, + [14686] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1556), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1554), 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, + [14736] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(583), 1, + sym_arguments, + 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), 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, + [14789] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(1891), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(781), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1510), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2462), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1642), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_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, + STATE(1511), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [14872] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(1893), 1, + sym_name, + ACTIONS(1895), 1, + anon_sym_LPAREN, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1537), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1685), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2549), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(896), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(821), 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(1523), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [14955] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(786), 1, + sym_arguments, + ACTIONS(1691), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1689), 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, + [15008] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1648), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1506), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1434), 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(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15091] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(884), 1, + sym_arguments, + 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), 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, + [15144] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(885), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1779), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1777), 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, + [15199] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(881), 1, + sym_arguments, + 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_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, + [15252] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(1897), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(700), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2548), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(701), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(773), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1654), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1542), 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, + [15335] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(861), 1, + sym_arguments, + ACTIONS(1552), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 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, + [15388] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(872), 1, + sym_arguments, + ACTIONS(1548), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 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, + [15441] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(626), 1, + sym_arguments, + ACTIONS(1691), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1689), 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, + [15494] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1648), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2438), 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(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, + STATE(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15577] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(1893), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(899), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1537), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2405), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1685), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(809), 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(1523), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15660] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(869), 1, + sym_arguments, + 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), 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, + [15713] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [15768] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [15823] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(1891), 1, + sym_name, + ACTIONS(1899), 1, + anon_sym_LPAREN, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1510), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1642), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2574), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(776), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(696), 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(1511), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15906] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(885), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1544), 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, + [15961] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1677), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [16016] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1114), 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(1112), 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, + [16065] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1600), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1598), 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, + [16114] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(1891), 1, + sym_name, + ACTIONS(1899), 1, + anon_sym_LPAREN, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1510), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1642), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2574), 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(682), 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(1511), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16197] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(870), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 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, + [16252] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(1901), 1, + sym_name, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 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(837), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2557), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1681), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(822), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(897), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1708), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1542), 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, + [16335] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(885), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1762), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1760), 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, + [16390] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1701), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1699), 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, + [16439] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(579), 1, + sym_arguments, + 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, + [16490] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(584), 1, + sym_arguments, + 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), 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, + [16541] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1903), 1, + sym_name, + ACTIONS(1905), 1, + anon_sym_LPAREN, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1528), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1687), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2546), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(835), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(775), 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(1545), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16624] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(583), 1, + sym_arguments, + 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, + [16675] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1648), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(709), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + 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, + STATE(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16758] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1544), 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, + [16809] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(1893), 1, + sym_name, + ACTIONS(1895), 1, + anon_sym_LPAREN, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1537), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1685), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2549), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(900), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(828), 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(1523), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16892] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1677), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [16947] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(622), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [17002] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(622), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [17057] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(580), 1, + sym_arguments, + ACTIONS(1548), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 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, + [17110] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1552), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 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, + [17163] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1120), 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(1118), 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, + [17212] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_arguments, + 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_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, + [17265] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1498), 1, + anon_sym_LPAREN, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1907), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1529), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1623), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2586), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(709), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(650), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1525), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17348] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + 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), 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, + [17401] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(581), 1, + sym_arguments, + ACTIONS(1552), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [17452] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1648), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1497), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1412), 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(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17535] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1622), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [17588] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(580), 1, + sym_arguments, + ACTIONS(1548), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [17639] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1771), 1, + anon_sym_EQ, + ACTIONS(1766), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1764), 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, + [17690] = 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(1026), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 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(781), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1533), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2438), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1648), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1428), 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(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17773] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(870), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 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, + [17828] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(1052), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 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, + [17883] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [17931] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1843), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1841), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [17979] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1785), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1783), 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, + [18027] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1861), 1, + anon_sym_COLON_COLON, + ACTIONS(1600), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1598), 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, + [18077] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1582), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18125] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1766), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1764), 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, + [18173] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1572), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1570), 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, + [18221] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1568), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1566), 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, + [18269] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1833), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1831), 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, + [18317] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1865), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_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), 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, + [18365] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1859), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1857), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [18413] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [18461] = 3, + ACTIONS(1506), 1, + sym_comment, + 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), 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, + [18509] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [18557] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [18605] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1560), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1558), 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, + [18653] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1590), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1837), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1835), 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, + [18703] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1604), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1602), 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, + [18751] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1564), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1562), 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, + [18799] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1556), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1554), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [18895] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1596), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1594), 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, + [18943] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [18991] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1869), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_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), 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, + [19039] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [19087] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1771), 1, + anon_sym_EQ, + ACTIONS(1911), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1766), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1764), 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, + [19139] = 3, + ACTIONS(1506), 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, + [19187] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1580), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1578), 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, + [19235] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + [19283] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1793), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1791), 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, + [19331] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1576), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1574), 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, + [19379] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1592), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1590), 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, + [19427] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1851), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1849), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1771), 1, + anon_sym_EQ, + ACTIONS(1766), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1764), 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, + [19525] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1873), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_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), 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, + [19573] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1588), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1586), 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, + [19621] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1847), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1845), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [19669] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1827), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [19717] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1819), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1817), 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, + [19765] = 3, + ACTIONS(1506), 1, + sym_comment, + 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(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, + [19813] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1789), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1787), 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, + [19861] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1855), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1853), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [19909] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1544), 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, + [19958] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1677), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [20007] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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), 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, + [20056] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1779), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1777), 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, + [20105] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1762), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1760), 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, + [20154] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1915), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1913), 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, + [20200] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1919), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1917), 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, + [20246] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1514), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [20292] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1518), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [20338] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1510), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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, + anon_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, + [20384] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1504), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [20430] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1923), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1921), 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, + [20476] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1536), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [20522] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1929), 1, + aux_sym_binary_expression_token1, + ACTIONS(1927), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1925), 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, + [20570] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1927), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1925), 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, + [20616] = 3, + ACTIONS(1506), 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, + [20662] = 3, + ACTIONS(1506), 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, + [20708] = 3, + ACTIONS(1506), 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, + [20754] = 3, + ACTIONS(1506), 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, + [20800] = 3, + ACTIONS(1506), 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, + [20846] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1762), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1760), 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, + [20892] = 3, + ACTIONS(1506), 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, + [20938] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1837), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1835), 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, + [20984] = 3, + ACTIONS(1506), 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, + [21030] = 3, + ACTIONS(1506), 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, + [21076] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [21122] = 3, + ACTIONS(1506), 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, + [21168] = 3, + ACTIONS(1506), 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, + [21214] = 3, + ACTIONS(1506), 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, + [21260] = 3, + ACTIONS(1506), 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, + [21306] = 3, + ACTIONS(1506), 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, + [21352] = 3, + ACTIONS(1506), 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, + [21398] = 3, + ACTIONS(1506), 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, + [21444] = 3, + ACTIONS(1506), 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, + [21490] = 3, + ACTIONS(1506), 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, + [21536] = 3, + ACTIONS(1506), 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, + [21582] = 3, + ACTIONS(1506), 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, + [21628] = 3, + ACTIONS(1506), 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, + [21674] = 3, + ACTIONS(1506), 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, + [21720] = 3, + ACTIONS(1506), 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, + [21766] = 3, + ACTIONS(1506), 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, + [21812] = 3, + ACTIONS(1506), 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, + [21858] = 3, + ACTIONS(1506), 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, + [21904] = 3, + ACTIONS(1506), 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, + [21950] = 3, + ACTIONS(1506), 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, + [21996] = 3, + ACTIONS(1506), 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, + [22042] = 3, + ACTIONS(1506), 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, + [22088] = 3, + ACTIONS(1506), 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, + [22134] = 3, + ACTIONS(1506), 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, + [22180] = 3, + ACTIONS(1506), 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, + [22226] = 3, + ACTIONS(1506), 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, + [22272] = 3, + ACTIONS(1506), 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, + [22318] = 3, + ACTIONS(1506), 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, + [22364] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2069), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2067), 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, + [22410] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2073), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2071), 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, + [22456] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2077), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2075), 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, + [22502] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2081), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2079), 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] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2085), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2083), 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, + [22594] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2089), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2087), 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, + [22640] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2093), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2091), 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, + [22686] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2097), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2095), 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, + [22732] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2101), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2099), 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, + [22778] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2105), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2103), 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, + [22824] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2109), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2107), 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, + [22870] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2113), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2111), 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, + [22916] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2117), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2115), 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, + [22962] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2121), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2119), 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, + [23008] = 3, + ACTIONS(1506), 1, + sym_comment, + 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), 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, + [23054] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2129), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2127), 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, + [23100] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1114), 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(1112), 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, + [23145] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1120), 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(1118), 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, + [23190] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2133), 1, + anon_sym_EQ_GT, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1921), 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, + [23272] = 19, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1750), 1, + anon_sym_QMARK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(2171), 1, + anon_sym_DOT_DOT_DOT, + STATE(1178), 1, + sym_visibility_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1656), 1, + sym__type, + STATE(1912), 1, + sym_reference_modifier, + STATE(1916), 1, + sym_variable_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1628), 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(1606), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [23348] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2173), 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, + [23422] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2175), 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, + [23502] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1991), 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, + [23582] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_STAR_STAR, + ACTIONS(1927), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1925), 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, + [23628] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_STAR_STAR, + ACTIONS(2181), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2179), 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, + [23674] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2183), 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, + [23754] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2185), 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, + [23834] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2187), 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, + [23908] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2191), 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, + [23988] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2193), 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, + [24062] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2195), 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, + [24136] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2197), 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, + [24216] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [24268] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [24318] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [24372] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2199), 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, + [24452] = 13, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(1677), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [24516] = 15, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [24584] = 16, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [24654] = 19, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [24730] = 20, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [24808] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [24882] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [24956] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [25004] = 14, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(1677), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [25070] = 12, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [25132] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2201), 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, + [25212] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_STAR_STAR, + 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), 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, + [25258] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2203), 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, + [25338] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2205), 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, + [25418] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2209), 1, + anon_sym_QMARK, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2207), 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, + [25492] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2169), 1, + anon_sym_PERCENT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2167), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1677), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1675), 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, + [25550] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [25597] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2201), 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, + [25676] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2197), 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, + [25755] = 15, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [25822] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2191), 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, + [25901] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2249), 1, + anon_sym_EQ_GT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1921), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [25982] = 13, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(1677), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [26045] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2185), 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, + [26124] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2183), 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, + [26203] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1677), 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(1675), 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, + [26256] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_STAR_STAR, + ACTIONS(1927), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1925), 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, + [26301] = 20, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [26378] = 16, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [26447] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [26520] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1991), 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, + [26599] = 19, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [26674] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2199), 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, + [26753] = 14, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(1677), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [26818] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1677), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1675), 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, + [26875] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1677), 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(1675), 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, + [26924] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1677), 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(1675), 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, + [26975] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2195), 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, + [27048] = 12, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1677), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [27109] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2193), 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, + [27182] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_STAR_STAR, + 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, + 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, + [27227] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2209), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2207), 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, + [27300] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2203), 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, + [27379] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_STAR_STAR, + ACTIONS(2181), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2179), 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, + [27424] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2205), 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, + [27503] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2173), 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, + [27576] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2187), 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, + [27649] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [27722] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_PERCENT, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2175), 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, + [27801] = 3, + ACTIONS(1506), 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, + [27843] = 3, + ACTIONS(1506), 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, + [27885] = 3, + ACTIONS(1506), 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, + [27927] = 18, + ACTIONS(1506), 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(2193), 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, + [27999] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2189), 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(2187), 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, + [28071] = 3, + ACTIONS(1506), 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, + [28113] = 3, + ACTIONS(1506), 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, + [28155] = 18, + ACTIONS(1506), 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(2195), 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, + [28227] = 3, + ACTIONS(1506), 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, + [28269] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2285), 1, + aux_sym_binary_expression_token1, + ACTIONS(1927), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1925), 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, + [28313] = 3, + ACTIONS(1506), 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, + [28355] = 3, + ACTIONS(1506), 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, + [28397] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2287), 1, + anon_sym_STAR_STAR, + ACTIONS(2181), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2179), 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, + [28441] = 3, + ACTIONS(1506), 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, + [28483] = 3, + ACTIONS(1506), 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, + [28525] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [28567] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2121), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2119), 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, + [28609] = 7, + ACTIONS(1506), 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(1677), 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(1675), 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, + [28659] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1837), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1835), 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, + [28701] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1927), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1925), 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, + [28743] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2073), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2071), 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, + [28785] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2117), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2115), 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, + [28827] = 6, + ACTIONS(1506), 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(1677), 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(1675), 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, + [28875] = 8, + ACTIONS(1506), 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(1677), 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(1675), 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, + [28927] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2113), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2111), 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, + [28969] = 3, + ACTIONS(1506), 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, + [29011] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2101), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2099), 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, + [29053] = 10, + ACTIONS(1506), 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(1677), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1675), 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, + [29109] = 3, + ACTIONS(1506), 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, + [29151] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2287), 1, + anon_sym_STAR_STAR, + ACTIONS(1927), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1925), 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, + [29195] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2077), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2075), 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, + [29237] = 3, + ACTIONS(1506), 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, + [29279] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2093), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2091), 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, + [29321] = 3, + ACTIONS(1506), 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, + [29363] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2185), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [29441] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2302), 1, + aux_sym_final_modifier_token1, + ACTIONS(2305), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2308), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2311), 1, + sym_var_modifier, + ACTIONS(2300), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2314), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1069), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(2295), 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, + [29497] = 3, + ACTIONS(1506), 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, + [29539] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2105), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2103), 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, + [29581] = 3, + ACTIONS(1506), 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, + [29623] = 15, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 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(1675), 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, + [29689] = 16, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 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(1675), 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, + [29757] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(1991), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [29835] = 3, + ACTIONS(1506), 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, + [29877] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1919), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1917), 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, + [29919] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2081), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2079), 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, + [29961] = 19, + ACTIONS(1506), 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(2289), 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(1675), 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, + [30035] = 3, + ACTIONS(1506), 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, + [30077] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2069), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2067), 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, + [30119] = 20, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2293), 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(1675), 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, + [30195] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1000), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(998), 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, + [30237] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2183), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30315] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(996), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(994), 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, + [30357] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2085), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2083), 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, + [30399] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1923), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1921), 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, + [30441] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2109), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2107), 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, + [30483] = 3, + ACTIONS(1506), 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, + [30525] = 3, + ACTIONS(1506), 1, + sym_comment, + 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, + 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, + [30567] = 18, + ACTIONS(1506), 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(1675), 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, + [30639] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 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(1675), 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, + [30711] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2129), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2127), 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, + [30753] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [30799] = 14, + ACTIONS(1506), 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(1677), 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(1675), 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, + [30863] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2097), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2095), 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, + [30905] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1514), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [30947] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1518), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [30989] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1510), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [31031] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2205), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31109] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1504), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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_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, + [31151] = 3, + ACTIONS(1506), 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, + [31193] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1915), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1913), 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, + [31235] = 3, + ACTIONS(1506), 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, + [31277] = 22, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 1, + aux_sym_binary_expression_token4, + ACTIONS(2317), 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(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1921), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31357] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2089), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2087), 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, + [31399] = 3, + ACTIONS(1506), 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, + [31441] = 12, + ACTIONS(1506), 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(1677), 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(1675), 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, + [31501] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2191), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31579] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2197), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31657] = 3, + ACTIONS(1506), 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, + [31699] = 3, + ACTIONS(1506), 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, + [31741] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2199), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31819] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2287), 1, + anon_sym_STAR_STAR, + 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), 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, + [31863] = 3, + ACTIONS(1506), 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, + [31905] = 3, + ACTIONS(1506), 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, + [31947] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2175), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32025] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2203), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32103] = 3, + ACTIONS(1506), 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, + [32145] = 3, + ACTIONS(1506), 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, + [32187] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2201), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32265] = 18, + ACTIONS(1506), 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(2173), 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, + [32337] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1762), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1760), 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, + [32379] = 3, + ACTIONS(1506), 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, + [32421] = 13, + ACTIONS(1506), 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(1677), 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(1675), 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, + [32483] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1536), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [32525] = 3, + ACTIONS(1506), 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, + [32567] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2209), 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(2207), 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, + [32639] = 3, + ACTIONS(1506), 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, + [32681] = 3, + ACTIONS(1506), 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, + [32723] = 3, + ACTIONS(1506), 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, + [32765] = 3, + ACTIONS(1506), 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, + [32807] = 3, + ACTIONS(1506), 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, + [32849] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2183), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32926] = 13, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(1677), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [32987] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2187), 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, + [33058] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [33103] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2173), 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, + [33174] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1991), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33251] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [33322] = 14, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(1677), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [33385] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2199), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33462] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2205), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33539] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2209), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2207), 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, + [33610] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2193), 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, + [33681] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2195), 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, + [33752] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [33801] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [33848] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 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(1675), 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, + [33899] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1677), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1675), 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, + [33954] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2203), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [34031] = 16, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [34098] = 20, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [34173] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_STAR_STAR, + ACTIONS(1927), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1925), 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, + [34216] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [34287] = 15, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [34352] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_STAR_STAR, + ACTIONS(2181), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2179), 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, + [34395] = 19, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [34468] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_STAR_STAR, + 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), 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, + [34511] = 12, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1675), 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, + [34570] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2185), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [34647] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2359), 1, + anon_sym_EQ_GT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1921), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [34726] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2191), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [34803] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2197), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [34880] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2201), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [34957] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2355), 1, + anon_sym_PERCENT, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2175), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [35034] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2377), 1, + sym_var_modifier, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1173), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35109] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2377), 1, + sym_var_modifier, + ACTIONS(2381), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1182), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35184] = 22, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 1, + aux_sym_binary_expression_token4, + ACTIONS(2385), 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(2383), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [35261] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2377), 1, + sym_var_modifier, + ACTIONS(2387), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 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, + [35336] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2389), 1, + anon_sym_EQ_GT, + ACTIONS(1921), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35413] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2391), 1, + anon_sym_EQ_GT, + ACTIONS(1921), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35490] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2393), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2396), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2399), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2402), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2405), 1, + anon_sym_RBRACE, + ACTIONS(2407), 1, + aux_sym_final_modifier_token1, + ACTIONS(2410), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2413), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2416), 1, + sym_var_modifier, + ACTIONS(2422), 1, + anon_sym_POUND_LBRACK, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2419), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1173), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35565] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2425), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35640] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2427), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35715] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2377), 1, + sym_var_modifier, + ACTIONS(2429), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1186), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35790] = 23, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2431), 1, + anon_sym_COMMA, + ACTIONS(2433), 1, + anon_sym_EQ_GT, + STATE(1993), 1, + aux_sym_match_condition_list_repeat1, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35869] = 16, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(43), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(1250), 1, + sym_readonly_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1978), 1, + sym_variable_name, + STATE(2298), 1, + sym__type, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1628), 2, + sym_union_type, + sym_intersection_type, + STATE(1512), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [35934] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2435), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36009] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2437), 1, + anon_sym_EQ_GT, + ACTIONS(1921), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36086] = 22, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 1, + aux_sym_binary_expression_token4, + ACTIONS(2385), 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(2439), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [36163] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2377), 1, + sym_var_modifier, + ACTIONS(2441), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1173), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [36238] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2377), 1, + sym_var_modifier, + ACTIONS(2443), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1173), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [36313] = 16, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(43), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(1267), 1, + sym_readonly_modifier, + STATE(1514), 1, + sym_qualified_name, + STATE(1938), 1, + sym_variable_name, + STATE(2381), 1, + sym__type, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1628), 2, + sym_union_type, + sym_intersection_type, + STATE(1512), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [36378] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2377), 1, + sym_var_modifier, + ACTIONS(2445), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1183), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [36453] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2377), 1, + sym_var_modifier, + ACTIONS(2447), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1325), 1, + sym_attribute_list, + STATE(1380), 1, + sym__class_const_declaration, + STATE(1387), 1, + sym__const_declaration, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(654), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1173), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [36528] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2449), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36602] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2451), 1, + anon_sym_EQ_GT, + ACTIONS(2453), 1, + anon_sym_RPAREN, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36678] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36752] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2459), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1394), 1, + sym__const_declaration, + STATE(2554), 1, + sym_visibility_modifier, + ACTIONS(2461), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2457), 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, + [36796] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2459), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1378), 1, + sym__const_declaration, + STATE(2554), 1, + sym_visibility_modifier, + ACTIONS(2461), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2457), 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, + [36840] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2463), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36914] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2465), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36988] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2467), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37062] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2451), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_RPAREN, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37138] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2471), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37212] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2451), 1, + anon_sym_EQ_GT, + ACTIONS(2473), 1, + anon_sym_RPAREN, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37288] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2475), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37362] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2439), 1, + anon_sym_RPAREN, + ACTIONS(2477), 1, + anon_sym_COMMA, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37438] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37512] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2481), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37586] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2483), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [37660] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2485), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [37734] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2451), 1, + anon_sym_EQ_GT, + ACTIONS(2487), 1, + anon_sym_RPAREN, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37810] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2489), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [37884] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2491), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37958] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2493), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [38032] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2383), 1, + anon_sym_RPAREN, + ACTIONS(2477), 1, + anon_sym_COMMA, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38108] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2495), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38182] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2497), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38256] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2499), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38330] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2501), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38404] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [38478] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2505), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [38552] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2507), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [38626] = 21, + ACTIONS(1506), 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(2289), 1, + aux_sym_binary_expression_token2, + ACTIONS(2291), 1, + aux_sym_binary_expression_token3, + ACTIONS(2293), 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(2509), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [38700] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2511), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38774] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38848] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2515), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38922] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2517), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38996] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2519), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39070] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2521), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39144] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2523), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39218] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2525), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39292] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2527), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39366] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2321), 1, + anon_sym_QMARK, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2329), 1, + aux_sym_binary_expression_token2, + ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, + aux_sym_binary_expression_token4, + ACTIONS(2335), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2337), 1, + anon_sym_AMP_AMP, + ACTIONS(2339), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_GT_EQ, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2349), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2355), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2529), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2343), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39440] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2383), 1, + anon_sym_SEMI, + ACTIONS(2531), 1, + anon_sym_COMMA, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39516] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2439), 1, + anon_sym_SEMI, + ACTIONS(2531), 1, + anon_sym_COMMA, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39592] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2533), 1, + anon_sym_EQ_GT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39665] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2535), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39738] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2537), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39811] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2539), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39884] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2541), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39957] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2543), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40030] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2545), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40103] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2547), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40176] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2549), 1, + anon_sym_EQ_GT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40249] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2551), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40322] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2553), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40395] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2555), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2557), 1, + anon_sym_RBRACE, + ACTIONS(2559), 1, + aux_sym_enum_case_token1, + ACTIONS(2561), 1, + aux_sym_final_modifier_token1, + ACTIONS(2563), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2565), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2567), 1, + sym_var_modifier, + STATE(1326), 1, + sym_attribute_list, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2569), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1245), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1332), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [40460] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2571), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40533] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2573), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40606] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2575), 1, + anon_sym_RPAREN, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40679] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2577), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40752] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2582), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2585), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2588), 1, + anon_sym_RBRACE, + ACTIONS(2590), 1, + aux_sym_enum_case_token1, + ACTIONS(2593), 1, + aux_sym_final_modifier_token1, + ACTIONS(2596), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2599), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2602), 1, + sym_var_modifier, + ACTIONS(2608), 1, + anon_sym_POUND_LBRACK, + STATE(1326), 1, + sym_attribute_list, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2605), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1245), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1332), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [40817] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2555), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2559), 1, + aux_sym_enum_case_token1, + ACTIONS(2561), 1, + aux_sym_final_modifier_token1, + ACTIONS(2563), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2565), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2567), 1, + sym_var_modifier, + ACTIONS(2611), 1, + anon_sym_RBRACE, + STATE(1326), 1, + sym_attribute_list, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2569), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1240), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1332), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [40882] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40955] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2615), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41028] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2617), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41101] = 14, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(1514), 1, + sym_qualified_name, + STATE(2050), 1, + sym_variable_name, + STATE(2187), 1, + sym__type, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1628), 2, + sym_union_type, + sym_intersection_type, + STATE(1512), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [41160] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2619), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41233] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41306] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2623), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41379] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2625), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41452] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2627), 1, + anon_sym_COLON, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41525] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2631), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2629), 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, + [41562] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2555), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2559), 1, + aux_sym_enum_case_token1, + ACTIONS(2561), 1, + aux_sym_final_modifier_token1, + ACTIONS(2563), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2565), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2567), 1, + sym_var_modifier, + ACTIONS(2633), 1, + anon_sym_RBRACE, + STATE(1326), 1, + sym_attribute_list, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2569), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1295), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1332), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [41627] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2635), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41700] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2637), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41773] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2639), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41846] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2641), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41919] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2613), 1, + anon_sym_RBRACK, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41992] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2643), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42065] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2645), 1, + anon_sym_COLON, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42138] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2647), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42211] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2649), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42284] = 14, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(1514), 1, + sym_qualified_name, + STATE(1970), 1, + sym_variable_name, + STATE(2309), 1, + sym__type, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1628), 2, + sym_union_type, + sym_intersection_type, + STATE(1512), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [42343] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2651), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42416] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2653), 1, + anon_sym_COLON, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42489] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2547), 1, + anon_sym_RBRACK, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42562] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2655), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42635] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2657), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42708] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2659), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42781] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2661), 1, + anon_sym_RPAREN, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42854] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2663), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42927] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2543), 1, + anon_sym_RBRACK, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43000] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2665), 1, + anon_sym_EQ_GT, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43073] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2667), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43146] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2669), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43219] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2671), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43292] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2625), 1, + anon_sym_RBRACK, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43365] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2673), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43438] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2675), 1, + anon_sym_RBRACK, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43511] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2677), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43584] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2679), 1, + anon_sym_RPAREN, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43657] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2681), 1, + anon_sym_RPAREN, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43730] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2683), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43803] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2675), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43876] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2685), 1, + anon_sym_COLON, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43949] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2687), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44022] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2689), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44095] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SLASH, + ACTIONS(2215), 1, + anon_sym_AMP, + ACTIONS(2217), 1, + anon_sym_QMARK, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2223), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2225), 1, + aux_sym_binary_expression_token2, + ACTIONS(2227), 1, + aux_sym_binary_expression_token3, + ACTIONS(2229), 1, + aux_sym_binary_expression_token4, + ACTIONS(2231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 1, + anon_sym_AMP_AMP, + ACTIONS(2235), 1, + anon_sym_CARET, + ACTIONS(2243), 1, + anon_sym_GT_EQ, + ACTIONS(2247), 1, + anon_sym_DOT, + ACTIONS(2623), 1, + anon_sym_RBRACK, + ACTIONS(2213), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2241), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2239), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44168] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2691), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44241] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2693), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44314] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2363), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2555), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2559), 1, + aux_sym_enum_case_token1, + ACTIONS(2561), 1, + aux_sym_final_modifier_token1, + ACTIONS(2563), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2565), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2567), 1, + sym_var_modifier, + ACTIONS(2695), 1, + anon_sym_RBRACE, + STATE(1326), 1, + sym_attribute_list, + STATE(1815), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2569), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1245), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1332), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [44379] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2697), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44452] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2699), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44525] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2701), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44598] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2703), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44671] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2705), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44744] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2143), 1, + aux_sym_binary_expression_token2, + ACTIONS(2145), 1, + aux_sym_binary_expression_token3, + ACTIONS(2147), 1, + aux_sym_binary_expression_token4, + ACTIONS(2149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2151), 1, + anon_sym_AMP_AMP, + ACTIONS(2153), 1, + anon_sym_CARET, + ACTIONS(2161), 1, + anon_sym_GT_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2707), 1, + anon_sym_RBRACE, + ACTIONS(2139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2163), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2157), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44817] = 13, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(2709), 1, + sym_bottom_type, + STATE(1514), 1, + sym_qualified_name, + STATE(2371), 1, + sym__type, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1628), 2, + sym_union_type, + sym_intersection_type, + STATE(1512), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [44873] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2713), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2711), 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, + [44909] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2717), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2715), 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, + [44945] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2719), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2461), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2457), 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, + [44983] = 13, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2721), 1, + sym_name, + ACTIONS(2725), 1, + anon_sym_QMARK, + ACTIONS(2727), 1, + sym_bottom_type, + STATE(1678), 1, + sym_qualified_name, + STATE(2045), 1, + sym__type, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(2069), 2, + sym_union_type, + sym_intersection_type, + STATE(1507), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2723), 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, + [45039] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2731), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2729), 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, + [45074] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2735), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2733), 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, + [45109] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 1, + anon_sym_POUND_LBRACK, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2739), 5, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2737), 18, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + 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, + [45147] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1752), 1, + anon_sym_POUND_LBRACK, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2746), 5, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2744), 18, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + 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, + [45185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2750), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2748), 18, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + 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, + [45217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2754), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2752), 18, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + 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, + [45249] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1750), 1, + anon_sym_QMARK, + STATE(1514), 1, + sym_qualified_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1671), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [45295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2756), 18, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + 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, + [45327] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1750), 1, + anon_sym_QMARK, + STATE(1514), 1, + sym_qualified_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1548), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [45373] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2721), 1, + sym_name, + ACTIONS(2725), 1, + anon_sym_QMARK, + STATE(1678), 1, + sym_qualified_name, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1781), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2723), 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, + [45419] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2721), 1, + sym_name, + ACTIONS(2725), 1, + anon_sym_QMARK, + STATE(1678), 1, + sym_qualified_name, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1788), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2723), 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, + [45465] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, + anon_sym_QMARK, + STATE(1514), 1, + sym_qualified_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1671), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [45511] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, + anon_sym_QMARK, + STATE(1514), 1, + sym_qualified_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1548), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 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, + [45557] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2721), 1, + sym_name, + STATE(1678), 1, + sym_qualified_name, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1625), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(2723), 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, + [45598] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + STATE(1514), 1, + sym_qualified_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1614), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(1657), 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, + [45639] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + STATE(1514), 1, + sym_qualified_name, + STATE(2476), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1614), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(1657), 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, + [45680] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2717), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2715), 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, + [45708] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2731), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2729), 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, + [45735] = 14, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2375), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2760), 1, + sym_var_modifier, + STATE(1190), 1, + sym_final_modifier, + STATE(1305), 1, + sym_visibility_modifier, + STATE(1374), 1, + sym__const_declaration, + STATE(1818), 1, + sym__function_definition_header, + ACTIONS(2379), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(655), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + [45784] = 11, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2555), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2561), 1, + aux_sym_final_modifier_token1, + ACTIONS(2563), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2565), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2762), 1, + aux_sym_enum_case_token1, + ACTIONS(2764), 1, + sym_var_modifier, + STATE(1818), 1, + sym__function_definition_header, + ACTIONS(2569), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1336), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [45826] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + sym_escape_sequence, + ACTIONS(2772), 1, + sym__new_line, + ACTIONS(2775), 1, + anon_sym_DOLLAR, + ACTIONS(2777), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2779), 1, + sym_heredoc_end, + STATE(1328), 1, + aux_sym_heredoc_body_repeat1, + STATE(1375), 1, + sym_variable_name, + STATE(1415), 1, + sym__simple_string_member_access_expression, + ACTIONS(2770), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1330), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45870] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LBRACE, + ACTIONS(2784), 1, + sym_escape_sequence, + ACTIONS(2790), 1, + sym__new_line, + ACTIONS(2793), 1, + anon_sym_DOLLAR, + ACTIONS(2796), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2799), 1, + sym_heredoc_end, + STATE(1328), 1, + aux_sym_heredoc_body_repeat1, + STATE(1375), 1, + sym_variable_name, + STATE(1415), 1, + sym__simple_string_member_access_expression, + ACTIONS(2787), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1330), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45914] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2801), 1, + anon_sym_POUND_LBRACK, + STATE(1329), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2739), 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, + [45941] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(2775), 1, + anon_sym_DOLLAR, + ACTIONS(2777), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2804), 1, + sym_escape_sequence, + ACTIONS(2806), 1, + sym__new_line, + ACTIONS(2808), 1, + sym_heredoc_end, + STATE(1375), 1, + sym_variable_name, + STATE(1415), 1, + sym__simple_string_member_access_expression, + ACTIONS(2770), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1334), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45982] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + sym_escape_sequence, + ACTIONS(2775), 1, + anon_sym_DOLLAR, + ACTIONS(2777), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2810), 1, + sym__new_line, + STATE(1327), 1, + aux_sym_heredoc_body_repeat1, + STATE(1375), 1, + sym_variable_name, + STATE(1415), 1, + sym__simple_string_member_access_expression, + ACTIONS(2770), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1330), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [46023] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2555), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2561), 1, + aux_sym_final_modifier_token1, + ACTIONS(2563), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2565), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2812), 1, + sym_var_modifier, + STATE(1823), 1, + sym__function_definition_header, + ACTIONS(2569), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1337), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [46062] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(2775), 1, + anon_sym_DOLLAR, + ACTIONS(2777), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2799), 1, + sym_heredoc_end, + ACTIONS(2804), 1, + sym_escape_sequence, + ACTIONS(2814), 1, + sym__new_line, + STATE(1375), 1, + sym_variable_name, + STATE(1415), 1, + sym__simple_string_member_access_expression, + ACTIONS(2770), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1334), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [46103] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + sym_escape_sequence, + ACTIONS(2825), 1, + sym__new_line, + ACTIONS(2827), 1, + anon_sym_DOLLAR, + ACTIONS(2830), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2833), 1, + sym_heredoc_end, + STATE(1375), 1, + sym_variable_name, + STATE(1415), 1, + sym__simple_string_member_access_expression, + ACTIONS(2822), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1334), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [46144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + STATE(1329), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2746), 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, + [46171] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2365), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2555), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2561), 1, + aux_sym_final_modifier_token1, + ACTIONS(2563), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2565), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2812), 1, + sym_var_modifier, + STATE(1808), 1, + sym__function_definition_header, + ACTIONS(2569), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1337), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [46210] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2300), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2835), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2838), 1, + aux_sym_final_modifier_token1, + ACTIONS(2841), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2844), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2847), 1, + sym_var_modifier, + ACTIONS(2850), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1337), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [46246] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2853), 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(1719), 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, + [46270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2750), 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, + [46291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 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, + [46312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2754), 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, + [46333] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2770), 1, + anon_sym_BSLASHu, + ACTIONS(2855), 1, + anon_sym_LBRACE, + ACTIONS(2857), 1, + sym_escape_sequence, + ACTIONS(2859), 1, + anon_sym_DOLLAR, + STATE(1375), 1, + sym_variable_name, + STATE(1415), 1, + sym__simple_string_member_access_expression, + ACTIONS(2777), 4, + sym_encapsed_string_chars_heredoc, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1333), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [46368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 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, + [46388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2861), 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, + [46408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2863), 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, + [46428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2865), 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, + [46448] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LBRACE, + ACTIONS(2869), 1, + sym_escape_sequence, + ACTIONS(2871), 1, + anon_sym_BSLASHu, + ACTIONS(2875), 1, + anon_sym_DQUOTE, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + STATE(1429), 1, + sym_variable_name, + STATE(1544), 1, + sym__simple_string_member_access_expression, + ACTIONS(2873), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1362), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2879), 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, + [46504] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LBRACE, + ACTIONS(2869), 1, + sym_escape_sequence, + ACTIONS(2871), 1, + anon_sym_BSLASHu, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2881), 1, + anon_sym_DQUOTE, + STATE(1429), 1, + sym_variable_name, + STATE(1544), 1, + sym__simple_string_member_access_expression, + ACTIONS(2873), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1362), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2879), 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, + [46560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2883), 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, + [46580] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_BSLASHu, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2885), 1, + sym_escape_sequence, + ACTIONS(2887), 1, + anon_sym_DQUOTE, + STATE(1429), 1, + sym_variable_name, + STATE(1544), 1, + sym__simple_string_member_access_expression, + ACTIONS(2873), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1349), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2865), 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, + [46636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2889), 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, + [46656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2891), 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, + [46676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2891), 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, + [46696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2893), 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, + [46716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 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, + [46736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2897), 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, + [46756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 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, + [46776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 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, + [46796] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2901), 1, + anon_sym_LBRACE, + ACTIONS(2904), 1, + sym_escape_sequence, + ACTIONS(2907), 1, + anon_sym_BSLASHu, + ACTIONS(2913), 1, + anon_sym_DQUOTE, + ACTIONS(2915), 1, + anon_sym_DOLLAR, + STATE(1429), 1, + sym_variable_name, + STATE(1544), 1, + sym__simple_string_member_access_expression, + ACTIONS(2910), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1362), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46832] = 7, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2920), 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(2918), 3, + sym_float, + sym_boolean, + sym_null, + STATE(2435), 5, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [46862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2861), 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, + [46882] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_BSLASHu, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2922), 1, + sym_escape_sequence, + ACTIONS(2924), 1, + anon_sym_DQUOTE, + STATE(1429), 1, + sym_variable_name, + STATE(1544), 1, + sym__simple_string_member_access_expression, + ACTIONS(2873), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1347), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2926), 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, + [46938] = 13, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2928), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2930), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2932), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2934), 1, + aux_sym_class_declaration_token1, + ACTIONS(2936), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2938), 1, + aux_sym__arrow_function_header_token1, + STATE(2207), 1, + sym__function_definition_header, + STATE(2492), 1, + sym_static_modifier, + STATE(2516), 1, + sym_readonly_modifier, + STATE(1869), 2, + sym_final_modifier, + sym_abstract_modifier, + [46979] = 10, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2940), 1, + sym_name, + ACTIONS(2946), 1, + anon_sym_BSLASH, + STATE(1785), 1, + sym_namespace_use_clause, + STATE(2506), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + ACTIONS(2944), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1647), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 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, + [47033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2950), 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, + [47052] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(2958), 1, + anon_sym_BSLASHu, + ACTIONS(2961), 1, + anon_sym_BQUOTE, + ACTIONS(2963), 1, + anon_sym_DOLLAR, + STATE(1466), 1, + sym_variable_name, + STATE(1577), 1, + sym__simple_string_member_access_expression, + ACTIONS(2955), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1371), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 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, + [47104] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 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, + [47123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 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, + [47142] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2974), 1, + anon_sym_DASH_GT, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2980), 1, + sym_encapsed_string_chars_after_variable_heredoc, + ACTIONS(2978), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2972), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [47169] = 13, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2371), 1, + aux_sym_final_modifier_token1, + ACTIONS(2373), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2928), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2930), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2936), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2938), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(2982), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2984), 1, + aux_sym_class_declaration_token1, + STATE(2216), 1, + sym__function_definition_header, + STATE(2492), 1, + sym_static_modifier, + STATE(2493), 1, + sym_readonly_modifier, + STATE(1874), 2, + sym_final_modifier, + sym_abstract_modifier, + [47210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2986), 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, + [47229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2988), 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, + [47248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2990), 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, + [47267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2992), 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, + [47286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 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, + [47305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2994), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + 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, + [47324] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, + anon_sym_BSLASHu, + ACTIONS(3002), 1, + anon_sym_BQUOTE, + ACTIONS(3004), 1, + anon_sym_DOLLAR, + STATE(1466), 1, + sym_variable_name, + STATE(1577), 1, + sym__simple_string_member_access_expression, + ACTIONS(2998), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1393), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47357] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_LBRACE, + ACTIONS(3004), 1, + anon_sym_DOLLAR, + ACTIONS(3008), 1, + anon_sym_BSLASHu, + ACTIONS(3010), 1, + anon_sym_BQUOTE, + STATE(1466), 1, + sym_variable_name, + STATE(1577), 1, + sym__simple_string_member_access_expression, + ACTIONS(3006), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1388), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47390] = 10, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2940), 1, + sym_name, + ACTIONS(3014), 1, + anon_sym_BSLASH, + STATE(1819), 1, + sym_namespace_use_clause, + STATE(2553), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + ACTIONS(3012), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1647), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 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, + [47444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3018), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + 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, + [47463] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_LBRACE, + ACTIONS(3004), 1, + anon_sym_DOLLAR, + ACTIONS(3022), 1, + anon_sym_BSLASHu, + ACTIONS(3024), 1, + anon_sym_BQUOTE, + STATE(1466), 1, + sym_variable_name, + STATE(1577), 1, + sym__simple_string_member_access_expression, + ACTIONS(3020), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1371), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 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, + [47515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3028), 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, + [47534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3030), 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, + [47553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 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, + [47572] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_LBRACE, + ACTIONS(3004), 1, + anon_sym_DOLLAR, + ACTIONS(3022), 1, + anon_sym_BSLASHu, + ACTIONS(3032), 1, + anon_sym_BQUOTE, + STATE(1466), 1, + sym_variable_name, + STATE(1577), 1, + sym__simple_string_member_access_expression, + ACTIONS(3020), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1371), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + 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, + [47624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 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, + [47643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1582), 4, + sym_encapsed_string_chars_heredoc, + sym_encapsed_string_chars_after_variable_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(1584), 9, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [47664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 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, + [47683] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3038), 1, + sym_name, + ACTIONS(3042), 1, + anon_sym_RBRACK, + STATE(2338), 1, + sym_attribute, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1747), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47717] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3038), 1, + sym_name, + ACTIONS(3044), 1, + anon_sym_RBRACK, + STATE(2338), 1, + sym_attribute, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1747), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47751] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3038), 1, + sym_name, + ACTIONS(3046), 1, + anon_sym_RBRACK, + STATE(2338), 1, + sym_attribute, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1747), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47785] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3038), 1, + sym_name, + ACTIONS(3048), 1, + anon_sym_RBRACK, + STATE(2338), 1, + sym_attribute, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1747), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47819] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2940), 1, + sym_name, + STATE(1904), 1, + sym_namespace_use_clause, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1647), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47850] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + ACTIONS(1861), 1, + anon_sym_COLON_COLON, + ACTIONS(2735), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3050), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1743), 1, + sym_variable_name, + STATE(1782), 1, + sym_static_variable_declaration, + ACTIONS(1598), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47879] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3038), 1, + sym_name, + STATE(1877), 1, + sym_attribute, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1747), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47910] = 9, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2940), 1, + sym_name, + ACTIONS(3052), 1, + anon_sym_BSLASH, + STATE(1834), 1, + sym_namespace_use_clause, + STATE(2517), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1647), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47941] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3038), 1, + sym_name, + STATE(2338), 1, + sym_attribute, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1747), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47972] = 9, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2940), 1, + sym_name, + ACTIONS(3054), 1, + anon_sym_BSLASH, + STATE(1810), 1, + sym_namespace_use_clause, + STATE(2483), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1647), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48003] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3038), 1, + sym_name, + STATE(1867), 1, + sym_attribute, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1747), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48034] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + ACTIONS(1861), 1, + anon_sym_COLON_COLON, + ACTIONS(2735), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3050), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1743), 1, + sym_variable_name, + STATE(1803), 1, + sym_static_variable_declaration, + ACTIONS(1598), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48063] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3056), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3058), 1, + aux_sym_use_instead_of_clause_token1, + STATE(587), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1582), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(1584), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48110] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3060), 1, + anon_sym_COMMA, + ACTIONS(3062), 1, + anon_sym_RPAREN, + STATE(587), 1, + sym_arguments, + STATE(1994), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48136] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3064), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1776), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3068), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(3066), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3072), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(3070), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48200] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3074), 1, + sym_name, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1827), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1586), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(1588), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3078), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(3076), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1602), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(1604), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48282] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 1, + anon_sym_BSLASHu, + ACTIONS(1582), 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, + [48300] = 7, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3080), 1, + anon_sym_RPAREN, + STATE(587), 1, + sym_arguments, + STATE(2100), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48326] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3060), 1, + anon_sym_COMMA, + ACTIONS(3082), 1, + anon_sym_RPAREN, + STATE(587), 1, + sym_arguments, + STATE(1934), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3086), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(3084), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48370] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3088), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(2088), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48398] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1544), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(3090), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48438] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1861), 1, + anon_sym_COLON_COLON, + ACTIONS(2735), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3094), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1598), 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, + [48460] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1777), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48482] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2972), 1, + anon_sym_BSLASHu, + ACTIONS(3096), 1, + anon_sym_DASH_GT, + ACTIONS(3098), 1, + anon_sym_LBRACK, + ACTIONS(3100), 1, + sym_encapsed_string_chars_after_variable, + ACTIONS(2978), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [48506] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3102), 1, + sym_name, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1930), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48534] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3104), 1, + sym_name, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1603), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2825), 7, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + sym__new_line, + anon_sym_DOLLAR, + [48580] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(3106), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48601] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(3108), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48622] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2731), 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, + [48637] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(587), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48660] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3110), 1, + sym_name, + ACTIONS(3112), 1, + anon_sym_LBRACE, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(706), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48683] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(3114), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48704] = 6, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3116), 1, + sym_name, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3118), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(770), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48727] = 7, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3122), 1, + sym_name, + ACTIONS(3124), 1, + anon_sym_LBRACE, + STATE(1515), 1, + sym__reserved_identifier, + STATE(771), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48752] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(2513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48773] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(2523), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48794] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3126), 1, + sym_name, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(714), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48817] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3130), 1, + sym_name, + ACTIONS(3132), 1, + anon_sym_LBRACE, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(715), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48840] = 7, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3134), 1, + sym_name, + ACTIONS(3136), 1, + anon_sym_LBRACE, + STATE(1521), 1, + sym__reserved_identifier, + STATE(1519), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48865] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3138), 1, + sym_name, + ACTIONS(3140), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym__reserved_identifier, + STATE(830), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48890] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3142), 1, + sym_name, + ACTIONS(3144), 1, + anon_sym_LBRACE, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(810), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48913] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2735), 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, + [48928] = 6, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3146), 1, + sym_name, + ACTIONS(3148), 1, + anon_sym_LBRACE, + ACTIONS(3118), 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, + [48951] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3150), 1, + sym_name, + ACTIONS(3152), 1, + anon_sym_LBRACE, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(707), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48974] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(885), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48997] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3154), 1, + sym_name, + ACTIONS(3156), 1, + anon_sym_LBRACE, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(685), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49020] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3134), 1, + sym_name, + ACTIONS(3136), 1, + anon_sym_LBRACE, + STATE(1521), 1, + sym__reserved_identifier, + STATE(817), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49045] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2713), 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, + [49060] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2631), 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, + [49075] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3138), 1, + sym_name, + ACTIONS(3140), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym__reserved_identifier, + STATE(708), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49100] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49123] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49146] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3158), 1, + sym_name, + ACTIONS(3160), 1, + anon_sym_LBRACE, + ACTIONS(3040), 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, + [49169] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3162), 1, + sym_name, + ACTIONS(3164), 1, + anon_sym_LBRACE, + ACTIONS(2942), 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, + [49192] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 1, + anon_sym_BSLASHu, + ACTIONS(1582), 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, + [49209] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3166), 1, + sym_name, + ACTIONS(3168), 1, + anon_sym_LBRACE, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(843), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49232] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(671), 1, + sym_arguments, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49255] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3138), 1, + sym_name, + ACTIONS(3140), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym__reserved_identifier, + STATE(845), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49280] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3170), 1, + sym_name, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(1535), 1, + sym__reserved_identifier, + STATE(716), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49305] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2972), 1, + anon_sym_BSLASHu, + ACTIONS(3174), 1, + anon_sym_DASH_GT, + ACTIONS(3176), 1, + anon_sym_LBRACK, + ACTIONS(3178), 1, + sym_execution_string_chars_after_variable, + ACTIONS(2978), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [49328] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3180), 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, + [49347] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(2527), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49368] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3182), 1, + sym_name, + ACTIONS(3184), 1, + anon_sym_LBRACE, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(803), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49391] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2717), 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, + [49406] = 6, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3186), 1, + sym_name, + ACTIONS(3188), 1, + anon_sym_LBRACE, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(573), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49429] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3138), 1, + sym_name, + ACTIONS(3140), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym__reserved_identifier, + STATE(687), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49454] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3190), 1, + sym_name, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1534), 1, + sym_reference_modifier, + STATE(1571), 1, + sym_formal_parameters, + STATE(2169), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49481] = 7, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3194), 1, + sym_name, + ACTIONS(3196), 1, + anon_sym_LBRACE, + STATE(698), 1, + sym__reserved_identifier, + STATE(644), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49506] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3198), 1, + sym_name, + ACTIONS(3200), 1, + anon_sym_LBRACE, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(833), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49529] = 6, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3202), 1, + sym_name, + ACTIONS(3206), 1, + anon_sym_LBRACE, + ACTIONS(3204), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(604), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49552] = 6, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3208), 1, + sym_name, + ACTIONS(3212), 1, + anon_sym_LBRACE, + ACTIONS(3210), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(652), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49575] = 6, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3214), 1, + sym_name, + ACTIONS(3216), 1, + anon_sym_LBRACE, + ACTIONS(3204), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(603), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49598] = 6, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3218), 1, + sym_name, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(574), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49621] = 7, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3170), 1, + sym_name, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(1535), 1, + sym__reserved_identifier, + STATE(1526), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49646] = 7, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3124), 1, + anon_sym_LBRACE, + ACTIONS(3222), 1, + sym_name, + STATE(806), 1, + sym__reserved_identifier, + STATE(771), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49671] = 6, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3186), 1, + sym_name, + ACTIONS(3188), 1, + anon_sym_LBRACE, + ACTIONS(3224), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(573), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49694] = 6, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3218), 1, + sym_name, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(3224), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(574), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49717] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3190), 1, + sym_name, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1509), 1, + sym_reference_modifier, + STATE(1600), 1, + sym_formal_parameters, + STATE(2169), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49744] = 6, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3226), 1, + sym_name, + ACTIONS(3228), 1, + anon_sym_LBRACE, + ACTIONS(3210), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(653), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49767] = 7, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3230), 1, + sym_name, + ACTIONS(3232), 1, + anon_sym_LBRACE, + STATE(814), 1, + sym__reserved_identifier, + STATE(601), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49792] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(2521), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49813] = 7, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3138), 1, + sym_name, + ACTIONS(3140), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym__reserved_identifier, + STATE(572), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49838] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3234), 1, + sym_name, + ACTIONS(3236), 1, + anon_sym_LBRACE, + ACTIONS(2942), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(831), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49861] = 6, + ACTIONS(945), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3238), 1, + aux_sym_catch_clause_token1, + ACTIONS(3240), 1, + aux_sym_finally_clause_token1, + ACTIONS(943), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1500), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [49883] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_LBRACE, + STATE(1354), 1, + sym_use_list, + STATE(1599), 1, + aux_sym_base_clause_repeat1, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3242), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49909] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + STATE(1514), 1, + sym_qualified_name, + STATE(1797), 1, + sym_named_type, + STATE(1988), 1, + sym_type_list, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + [49937] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + STATE(1514), 1, + sym_qualified_name, + STATE(1797), 1, + sym_named_type, + STATE(1989), 1, + sym_type_list, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + [49965] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + STATE(918), 1, + sym_declaration_list, + STATE(1617), 1, + sym_arguments, + STATE(1849), 1, + sym_base_clause, + STATE(2179), 1, + sym_class_interface_clause, + [49993] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1861), 1, + anon_sym_COLON_COLON, + ACTIONS(2735), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3050), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1598), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50013] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_declaration_list, + STATE(1587), 1, + sym_arguments, + STATE(1718), 1, + sym_base_clause, + STATE(2272), 1, + sym_class_interface_clause, + [50041] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3060), 1, + anon_sym_COMMA, + ACTIONS(3062), 1, + anon_sym_RPAREN, + STATE(1994), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50061] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_declaration_list, + STATE(1565), 1, + sym_arguments, + STATE(1726), 1, + sym_base_clause, + STATE(2350), 1, + sym_class_interface_clause, + [50089] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3060), 1, + anon_sym_COMMA, + ACTIONS(3082), 1, + anon_sym_RPAREN, + STATE(1934), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50109] = 6, + ACTIONS(935), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3256), 1, + aux_sym_catch_clause_token1, + ACTIONS(3259), 1, + aux_sym_finally_clause_token1, + ACTIONS(933), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1500), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [50131] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + STATE(929), 1, + sym_declaration_list, + STATE(1596), 1, + sym_arguments, + STATE(1753), 1, + sym_base_clause, + STATE(2376), 1, + sym_class_interface_clause, + [50159] = 5, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3080), 1, + anon_sym_RPAREN, + STATE(2100), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50179] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(622), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50196] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 1, + anon_sym_BSLASHu, + ACTIONS(1582), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50211] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + STATE(1514), 1, + sym_qualified_name, + STATE(2109), 1, + sym_named_type, + STATE(2421), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + [50236] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3108), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50251] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3265), 1, + anon_sym_AMP, + ACTIONS(3267), 1, + anon_sym_PIPE, + STATE(1622), 1, + aux_sym_union_type_repeat1, + STATE(1624), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3262), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [50272] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1889), 3, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(1887), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [50287] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + ACTIONS(3269), 1, + sym_name, + STATE(1615), 1, + sym_formal_parameters, + STATE(2239), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50308] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50325] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50342] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3271), 1, + anon_sym_AMP, + ACTIONS(3273), 1, + anon_sym_PIPE, + STATE(1652), 1, + aux_sym_intersection_type_repeat1, + STATE(1707), 1, + aux_sym_union_type_repeat1, + ACTIONS(3262), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [50363] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3180), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [50380] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3180), 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, + [50393] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(786), 1, + sym_arguments, + ACTIONS(1689), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50410] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1588), 1, + anon_sym_BSLASHu, + ACTIONS(1586), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50425] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3106), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50440] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1604), 1, + anon_sym_BSLASHu, + ACTIONS(1602), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50455] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(869), 1, + sym_arguments, + ACTIONS(1520), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50472] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_BSLASHu, + ACTIONS(3078), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50487] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(869), 1, + sym_arguments, + ACTIONS(1689), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50504] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3056), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3058), 1, + aux_sym_use_instead_of_clause_token1, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50521] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(885), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50538] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3090), 1, + anon_sym_BSLASHu, + ACTIONS(3092), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50553] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(671), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50570] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_arguments, + ACTIONS(1520), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50587] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3275), 1, + sym_name, + STATE(1626), 1, + sym_reference_modifier, + STATE(2265), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50608] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50625] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(671), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50642] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3279), 1, + anon_sym_DASH, + ACTIONS(3277), 2, + sym_integer, + sym_name, + STATE(2412), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [50661] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3281), 1, + anon_sym_BSLASHu, + ACTIONS(2913), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50676] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3285), 1, + aux_sym_enum_case_token1, + ACTIONS(3288), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3283), 2, + anon_sym_RBRACE, + aux_sym_switch_block_token1, + STATE(1532), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [50695] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50712] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + ACTIONS(3269), 1, + sym_name, + STATE(1613), 1, + sym_formal_parameters, + STATE(2239), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50733] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_arguments, + ACTIONS(1689), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50750] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3279), 1, + anon_sym_DASH, + ACTIONS(3291), 2, + sym_integer, + sym_name, + STATE(2543), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [50769] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(885), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50786] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3279), 1, + anon_sym_DASH, + ACTIONS(3293), 2, + sym_integer, + sym_name, + STATE(2398), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [50805] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3297), 1, + anon_sym_BSLASHu, + ACTIONS(3295), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50820] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3301), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1876), 1, + sym_namespace_aliasing_clause, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3299), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [50841] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3114), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50856] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50873] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3066), 1, + anon_sym_BSLASHu, + ACTIONS(3068), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50888] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3070), 1, + anon_sym_BSLASHu, + ACTIONS(3072), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50903] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1540), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50920] = 7, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(945), 1, + sym_compound_statement, + STATE(1796), 1, + sym_anonymous_function_use_clause, + STATE(2287), 1, + sym__return_type, + [50942] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3307), 1, + aux_sym_if_statement_token2, + ACTIONS(3309), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3311), 1, + aux_sym_else_clause_token1, + STATE(1705), 1, + aux_sym_if_statement_repeat2, + STATE(1936), 1, + sym_else_if_clause_2, + STATE(2440), 1, + sym_else_clause_2, + [50964] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3313), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [50976] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3315), 1, + sym_name, + STATE(1841), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50994] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_compound_statement, + STATE(1844), 1, + sym_anonymous_function_use_clause, + STATE(2138), 1, + sym__return_type, + [51016] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 1, + anon_sym_BSLASHu, + ACTIONS(1582), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51030] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_RBRACE, + ACTIONS(3321), 1, + aux_sym_enum_case_token1, + ACTIONS(3323), 1, + aux_sym_match_default_expression_token1, + STATE(1561), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51048] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3315), 1, + sym_name, + STATE(1712), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51066] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + STATE(2277), 1, + sym_arguments, + ACTIONS(3325), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51086] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1690), 1, + sym_declaration_list, + STATE(1800), 1, + sym_base_clause, + STATE(2270), 1, + sym_class_interface_clause, + [51108] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3315), 1, + sym_name, + STATE(1923), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51126] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3309), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3311), 1, + aux_sym_else_clause_token1, + ACTIONS(3327), 1, + aux_sym_if_statement_token2, + STATE(1705), 1, + aux_sym_if_statement_repeat2, + STATE(1936), 1, + sym_else_if_clause_2, + STATE(2464), 1, + sym_else_clause_2, + [51148] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3309), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3311), 1, + aux_sym_else_clause_token1, + ACTIONS(3329), 1, + aux_sym_if_statement_token2, + STATE(1547), 1, + aux_sym_if_statement_repeat2, + STATE(1936), 1, + sym_else_if_clause_2, + STATE(2459), 1, + sym_else_clause_2, + [51170] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3321), 1, + aux_sym_enum_case_token1, + ACTIONS(3323), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3331), 1, + aux_sym_switch_block_token1, + STATE(1588), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51188] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_declaration_list, + STATE(1830), 1, + sym_base_clause, + STATE(2133), 1, + sym_class_interface_clause, + [51210] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3321), 1, + aux_sym_enum_case_token1, + ACTIONS(3323), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3335), 1, + anon_sym_RBRACE, + STATE(1532), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51228] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3321), 1, + aux_sym_enum_case_token1, + ACTIONS(3323), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3337), 1, + anon_sym_RBRACE, + STATE(1581), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51246] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3321), 1, + aux_sym_enum_case_token1, + ACTIONS(3323), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3339), 1, + aux_sym_switch_block_token1, + STATE(1532), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51264] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3321), 1, + aux_sym_enum_case_token1, + ACTIONS(3323), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3341), 1, + aux_sym_switch_block_token1, + STATE(1563), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51282] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_declaration_list, + STATE(1725), 1, + sym_base_clause, + STATE(2251), 1, + sym_class_interface_clause, + [51304] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3315), 1, + sym_name, + STATE(1789), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51322] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_BSLASHu, + ACTIONS(3078), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51336] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3315), 1, + sym_name, + STATE(1821), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51354] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1604), 1, + anon_sym_BSLASHu, + ACTIONS(1602), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51368] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3090), 1, + anon_sym_BSLASHu, + ACTIONS(3092), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51382] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym_compound_statement, + STATE(1801), 1, + sym_anonymous_function_use_clause, + STATE(2325), 1, + sym__return_type, + [51404] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3315), 1, + sym_name, + STATE(1793), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51422] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3343), 1, + anon_sym_COMMA, + STATE(1731), 1, + aux_sym_base_clause_repeat1, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3345), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [51442] = 7, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(917), 1, + sym_compound_statement, + STATE(1842), 1, + sym_anonymous_function_use_clause, + STATE(2195), 1, + sym__return_type, + [51464] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1588), 1, + anon_sym_BSLASHu, + ACTIONS(1586), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51478] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1670), 1, + sym_declaration_list, + STATE(1846), 1, + sym_base_clause, + STATE(2165), 1, + sym_class_interface_clause, + [51500] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3070), 1, + anon_sym_BSLASHu, + ACTIONS(3072), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51514] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1627), 1, + sym_declaration_list, + STATE(1741), 1, + sym_base_clause, + STATE(2311), 1, + sym_class_interface_clause, + [51536] = 7, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(956), 1, + sym_compound_statement, + STATE(1715), 1, + sym_anonymous_function_use_clause, + STATE(2362), 1, + sym__return_type, + [51558] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1683), 1, + sym_declaration_list, + STATE(1714), 1, + sym_base_clause, + STATE(2365), 1, + sym_class_interface_clause, + [51580] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3321), 1, + aux_sym_enum_case_token1, + ACTIONS(3323), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3347), 1, + anon_sym_RBRACE, + STATE(1532), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51598] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1034), 1, + sym_compound_statement, + STATE(1736), 1, + sym_anonymous_function_use_clause, + STATE(2294), 1, + sym__return_type, + [51620] = 7, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(954), 1, + sym_compound_statement, + STATE(1734), 1, + sym_anonymous_function_use_clause, + STATE(2321), 1, + sym__return_type, + [51642] = 7, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(931), 1, + sym_compound_statement, + STATE(1713), 1, + sym_anonymous_function_use_clause, + STATE(2369), 1, + sym__return_type, + [51664] = 7, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(955), 1, + sym_compound_statement, + STATE(1710), 1, + sym_anonymous_function_use_clause, + STATE(2328), 1, + sym__return_type, + [51686] = 7, + ACTIONS(959), 1, + aux_sym_while_statement_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3349), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3351), 1, + aux_sym_else_clause_token1, + STATE(1706), 1, + aux_sym_if_statement_repeat1, + STATE(2018), 1, + sym_else_clause, + STATE(2037), 1, + sym_else_if_clause, + [51708] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_declaration_list, + STATE(1727), 1, + sym_base_clause, + STATE(2351), 1, + sym_class_interface_clause, + [51730] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3321), 1, + aux_sym_enum_case_token1, + ACTIONS(3323), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3353), 1, + aux_sym_switch_block_token1, + STATE(1532), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51748] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1634), 1, + sym_declaration_list, + STATE(1742), 1, + sym_base_clause, + STATE(2373), 1, + sym_class_interface_clause, + [51770] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1637), 1, + sym_declaration_list, + STATE(1732), 1, + sym_base_clause, + STATE(2332), 1, + sym_class_interface_clause, + [51792] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_BSLASHu, + ACTIONS(2961), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51806] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3357), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [51818] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_declaration_list, + STATE(1784), 1, + sym_base_clause, + STATE(2258), 1, + sym_class_interface_clause, + [51840] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3315), 1, + sym_name, + STATE(1762), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51858] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3309), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3311), 1, + aux_sym_else_clause_token1, + ACTIONS(3359), 1, + aux_sym_if_statement_token2, + STATE(1557), 1, + aux_sym_if_statement_repeat2, + STATE(1936), 1, + sym_else_if_clause_2, + STATE(2386), 1, + sym_else_clause_2, + [51880] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + STATE(957), 1, + sym_declaration_list, + STATE(1730), 1, + sym_base_clause, + STATE(2340), 1, + sym_class_interface_clause, + [51902] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3361), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [51918] = 7, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(922), 1, + sym_compound_statement, + STATE(1791), 1, + sym_anonymous_function_use_clause, + STATE(2231), 1, + sym__return_type, + [51940] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_LBRACE, + STATE(1345), 1, + sym_use_list, + STATE(1636), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3363), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51960] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1072), 1, + sym_compound_statement, + STATE(1768), 1, + sym_anonymous_function_use_clause, + STATE(2241), 1, + sym__return_type, + [51982] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_declaration_list, + STATE(1775), 1, + sym_base_clause, + STATE(2221), 1, + sym_class_interface_clause, + [52004] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(453), 1, + sym_declaration_list, + STATE(1738), 1, + sym_base_clause, + STATE(2211), 1, + sym_class_interface_clause, + [52026] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_LBRACE, + STATE(1354), 1, + sym_use_list, + STATE(1599), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3242), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52046] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(446), 1, + sym_declaration_list, + STATE(1807), 1, + sym_base_clause, + STATE(2322), 1, + sym_class_interface_clause, + [52068] = 7, + ACTIONS(959), 1, + aux_sym_while_statement_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3365), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3368), 1, + aux_sym_else_clause_token1, + STATE(1706), 1, + aux_sym_if_statement_repeat1, + STATE(2018), 1, + sym_else_clause, + STATE(2037), 1, + sym_else_if_clause, + [52090] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3371), 1, + anon_sym_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + STATE(1645), 1, + aux_sym_union_type_repeat1, + STATE(1802), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3262), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [52110] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1096), 1, + sym_compound_statement, + STATE(1835), 1, + sym_anonymous_function_use_clause, + STATE(2316), 1, + sym__return_type, + [52132] = 7, + ACTIONS(951), 1, + aux_sym_while_statement_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3349), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3351), 1, + aux_sym_else_clause_token1, + STATE(1586), 1, + aux_sym_if_statement_repeat1, + STATE(2035), 1, + sym_else_clause, + STATE(2037), 1, + sym_else_if_clause, + [52154] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_declaration_list, + STATE(1764), 1, + sym_base_clause, + STATE(2329), 1, + sym_class_interface_clause, + [52176] = 7, + ACTIONS(951), 1, + aux_sym_while_statement_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3377), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3380), 1, + aux_sym_else_clause_token1, + STATE(1605), 1, + aux_sym_if_statement_repeat1, + STATE(2035), 1, + sym_else_clause, + STATE(2037), 1, + sym_else_if_clause, + [52198] = 7, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(923), 1, + sym_compound_statement, + STATE(1778), 1, + sym_anonymous_function_use_clause, + STATE(2273), 1, + sym__return_type, + [52220] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym_compound_statement, + STATE(1751), 1, + sym_anonymous_function_use_clause, + STATE(2217), 1, + sym__return_type, + [52242] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1106), 1, + sym_compound_statement, + STATE(1824), 1, + sym_anonymous_function_use_clause, + STATE(2215), 1, + sym__return_type, + [52264] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3383), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [52276] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1129), 1, + sym_compound_statement, + STATE(1771), 1, + sym_anonymous_function_use_clause, + STATE(2372), 1, + sym__return_type, + [52298] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3066), 1, + anon_sym_BSLASHu, + ACTIONS(3068), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [52312] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + STATE(928), 1, + sym_declaration_list, + STATE(1758), 1, + sym_base_clause, + STATE(2377), 1, + sym_class_interface_clause, + [52334] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3387), 1, + anon_sym_COLON, + STATE(2046), 1, + sym__return_type, + ACTIONS(3385), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52349] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_DOLLAR, + ACTIONS(3389), 1, + sym_name, + ACTIONS(3391), 1, + anon_sym_LBRACE, + STATE(889), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52366] = 4, + ACTIONS(1108), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1106), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3393), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52381] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3395), 1, + sym_name, + ACTIONS(3397), 1, + anon_sym_BSLASH, + STATE(524), 1, + sym_compound_statement, + STATE(1661), 1, + sym_namespace_name, + [52400] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3267), 1, + anon_sym_PIPE, + STATE(1651), 1, + aux_sym_union_type_repeat1, + ACTIONS(3399), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52415] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3405), 1, + anon_sym_DASH_GT, + ACTIONS(3407), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3409), 1, + anon_sym_LBRACK, + [52434] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3265), 1, + anon_sym_AMP, + STATE(1649), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3411), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52449] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3383), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [52460] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3413), 1, + sym_name, + STATE(2196), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [52475] = 4, + ACTIONS(1102), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1100), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3415), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52490] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3417), 5, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [52501] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3419), 1, + anon_sym_DOT_DOT_DOT, + STATE(1908), 1, + sym_reference_modifier, + STATE(1909), 1, + sym_variable_name, + [52520] = 4, + ACTIONS(1042), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1040), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3421), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52535] = 4, + ACTIONS(1022), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1020), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3423), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52550] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3425), 1, + sym_name, + ACTIONS(3427), 1, + anon_sym_LBRACE, + ACTIONS(3429), 1, + anon_sym_DOLLAR, + STATE(1575), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52567] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3431), 1, + sym_name, + STATE(1733), 1, + sym_namespace_name, + STATE(1968), 1, + sym_namespace_use_group_clause, + ACTIONS(3433), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [52584] = 4, + ACTIONS(1016), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1014), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3435), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52599] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3437), 1, + sym_name, + ACTIONS(3439), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_DOLLAR, + STATE(1417), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52616] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3443), 1, + anon_sym_COMMA, + STATE(1636), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3361), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52631] = 4, + ACTIONS(1010), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1008), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3446), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52646] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3448), 1, + sym_name, + ACTIONS(3450), 1, + anon_sym_LBRACE, + STATE(718), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52663] = 5, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3452), 1, + sym_name, + ACTIONS(3454), 1, + anon_sym_LBRACE, + STATE(623), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52680] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3456), 1, + anon_sym_LBRACE, + ACTIONS(3458), 1, + anon_sym_DASH_GT, + ACTIONS(3460), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3462), 1, + anon_sym_LBRACK, + [52699] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3464), 1, + anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_RPAREN, + STATE(2121), 2, + sym_variable_name, + sym_variable_reference, + [52716] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3456), 1, + anon_sym_LBRACE, + ACTIONS(3462), 1, + anon_sym_LBRACK, + ACTIONS(3468), 1, + anon_sym_DASH_GT, + ACTIONS(3470), 1, + anon_sym_QMARK_DASH_GT, + [52735] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3472), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_COLON, + STATE(2033), 1, + sym_enum_declaration_list, + STATE(2368), 1, + sym_class_interface_clause, + [52754] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3478), 1, + anon_sym_BSLASH, + STATE(1644), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3476), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52769] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_PIPE, + STATE(1669), 1, + aux_sym_union_type_repeat1, + ACTIONS(3399), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [52784] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3238), 1, + aux_sym_catch_clause_token1, + ACTIONS(3240), 1, + aux_sym_finally_clause_token1, + STATE(1490), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [52799] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3301), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1876), 1, + sym_namespace_aliasing_clause, + ACTIONS(3299), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52814] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3481), 1, + anon_sym_LBRACE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3487), 1, + anon_sym_LBRACK, + [52833] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3491), 1, + anon_sym_AMP, + STATE(1649), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3489), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52848] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3494), 1, + anon_sym_LBRACE, + ACTIONS(3496), 1, + anon_sym_DASH_GT, + ACTIONS(3498), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3500), 1, + anon_sym_LBRACK, + [52867] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3502), 1, + anon_sym_PIPE, + STATE(1651), 1, + aux_sym_union_type_repeat1, + ACTIONS(3313), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52882] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3271), 1, + anon_sym_AMP, + STATE(1664), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3411), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [52897] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3472), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_COLON, + STATE(2064), 1, + sym_enum_declaration_list, + STATE(2116), 1, + sym_class_interface_clause, + [52916] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3456), 1, + anon_sym_LBRACE, + ACTIONS(3462), 1, + anon_sym_LBRACK, + ACTIONS(3507), 1, + anon_sym_DASH_GT, + ACTIONS(3509), 1, + anon_sym_QMARK_DASH_GT, + [52935] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3387), 1, + anon_sym_COLON, + STATE(2029), 1, + sym__return_type, + ACTIONS(3511), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52950] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3513), 1, + anon_sym_DOT_DOT_DOT, + STATE(1980), 1, + sym_reference_modifier, + STATE(1981), 1, + sym_variable_name, + [52969] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3517), 1, + anon_sym_BSLASH, + STATE(1850), 1, + sym_compound_statement, + ACTIONS(3515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52986] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3519), 1, + anon_sym_BSLASH, + STATE(1658), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3476), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [53001] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3522), 1, + anon_sym_LBRACE, + ACTIONS(3524), 1, + anon_sym_DASH_GT, + ACTIONS(3526), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3528), 1, + anon_sym_LBRACK, + [53020] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3532), 1, + anon_sym_BSLASH, + STATE(1658), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3530), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [53035] = 5, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3517), 1, + anon_sym_BSLASH, + STATE(533), 1, + sym_compound_statement, + ACTIONS(3534), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53052] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3536), 1, + sym_name, + ACTIONS(3538), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_DOLLAR, + STATE(1516), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53069] = 5, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3542), 1, + sym_name, + ACTIONS(3544), 1, + anon_sym_LBRACE, + STATE(792), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53086] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3546), 1, + anon_sym_AMP, + STATE(1664), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3489), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53101] = 4, + ACTIONS(1078), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1076), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3549), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53116] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3553), 1, + anon_sym_BSLASH, + STATE(1697), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3551), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [53131] = 5, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3556), 1, + sym_name, + ACTIONS(3558), 1, + anon_sym_LBRACE, + STATE(586), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53148] = 4, + ACTIONS(1072), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1070), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3560), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53163] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3562), 1, + anon_sym_PIPE, + STATE(1669), 1, + aux_sym_union_type_repeat1, + ACTIONS(3313), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [53178] = 4, + ACTIONS(1096), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1094), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3565), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53193] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3489), 5, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [53204] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3532), 1, + anon_sym_BSLASH, + STATE(1660), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3551), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [53219] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3567), 1, + anon_sym_PIPE, + STATE(1673), 1, + aux_sym_union_type_repeat1, + ACTIONS(3313), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53234] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3343), 1, + anon_sym_COMMA, + ACTIONS(3570), 1, + anon_sym_LBRACE, + STATE(1986), 1, + aux_sym_base_clause_repeat1, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + [53253] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3574), 1, + anon_sym_COLON, + STATE(521), 1, + sym_enum_declaration_list, + STATE(2323), 1, + sym_class_interface_clause, + [53272] = 4, + ACTIONS(1060), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1058), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3576), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53287] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3578), 1, + sym_name, + STATE(2093), 1, + sym_visibility_modifier, + ACTIONS(3580), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [53302] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3180), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [53313] = 6, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3395), 1, + sym_name, + ACTIONS(3397), 1, + anon_sym_BSLASH, + STATE(1657), 1, + sym_namespace_name, + STATE(2081), 1, + sym_compound_statement, + [53332] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3464), 1, + anon_sym_AMP, + ACTIONS(3582), 1, + anon_sym_RPAREN, + STATE(2121), 2, + sym_variable_name, + sym_variable_reference, + [53349] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3357), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [53360] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3538), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_DOLLAR, + ACTIONS(3584), 1, + sym_name, + STATE(1516), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53377] = 4, + ACTIONS(1066), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1064), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3586), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53392] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_COLON, + STATE(499), 1, + sym_enum_declaration_list, + STATE(2247), 1, + sym_class_interface_clause, + [53411] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3522), 1, + anon_sym_LBRACE, + ACTIONS(3528), 1, + anon_sym_LBRACK, + ACTIONS(3590), 1, + anon_sym_DASH_GT, + ACTIONS(3592), 1, + anon_sym_QMARK_DASH_GT, + [53430] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3361), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [53445] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3594), 1, + anon_sym_LBRACE, + ACTIONS(3596), 1, + anon_sym_DASH_GT, + ACTIONS(3598), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3600), 1, + anon_sym_LBRACK, + [53464] = 4, + ACTIONS(1054), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1052), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3602), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53479] = 4, + ACTIONS(1048), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1046), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3604), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53494] = 4, + ACTIONS(1036), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1034), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3606), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53509] = 4, + ACTIONS(1090), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1088), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3608), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53524] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_EQ, + STATE(2086), 1, + sym_property_initializer, + ACTIONS(3610), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [53539] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_catch_clause_token1, + ACTIONS(3616), 1, + aux_sym_finally_clause_token1, + STATE(420), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [53554] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3431), 1, + sym_name, + STATE(1733), 1, + sym_namespace_name, + STATE(2129), 1, + sym_namespace_use_group_clause, + ACTIONS(3433), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [53571] = 3, + ACTIONS(988), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(986), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53584] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3427), 1, + anon_sym_LBRACE, + ACTIONS(3429), 1, + anon_sym_DOLLAR, + ACTIONS(3618), 1, + sym_name, + STATE(1575), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53601] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_BSLASH, + STATE(1644), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3530), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [53616] = 3, + ACTIONS(992), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(990), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53629] = 4, + ACTIONS(1084), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1082), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3623), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53644] = 4, + ACTIONS(1030), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1028), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3625), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53659] = 5, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3627), 1, + sym_name, + ACTIONS(3629), 1, + anon_sym_LBRACE, + STATE(677), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53676] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3439), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_DOLLAR, + ACTIONS(3631), 1, + sym_name, + STATE(1417), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53693] = 4, + ACTIONS(1004), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1002), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3633), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53708] = 3, + ACTIONS(977), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 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, + [53721] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3635), 1, + aux_sym_if_statement_token2, + ACTIONS(3637), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3640), 1, + aux_sym_else_clause_token1, + STATE(1705), 1, + aux_sym_if_statement_repeat2, + STATE(1936), 1, + sym_else_if_clause_2, + [53740] = 6, + ACTIONS(979), 1, + aux_sym_while_statement_token1, + ACTIONS(981), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3642), 1, + aux_sym_else_if_clause_token1, + STATE(1706), 1, + aux_sym_if_statement_repeat1, + STATE(2037), 1, + sym_else_if_clause, + [53759] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3273), 1, + anon_sym_PIPE, + STATE(1673), 1, + aux_sym_union_type_repeat1, + ACTIONS(3399), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53774] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3522), 1, + anon_sym_LBRACE, + ACTIONS(3528), 1, + anon_sym_LBRACK, + ACTIONS(3645), 1, + anon_sym_DASH_GT, + ACTIONS(3647), 1, + anon_sym_QMARK_DASH_GT, + [53793] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(3481), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3649), 1, + anon_sym_DASH_GT, + ACTIONS(3651), 1, + anon_sym_QMARK_DASH_GT, + [53812] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(943), 1, + sym_compound_statement, + STATE(2286), 1, + sym__return_type, + [53828] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1964), 1, + sym_formal_parameters, + STATE(2318), 1, + sym_reference_modifier, + [53844] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1794), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3653), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53858] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(952), 1, + sym_compound_statement, + STATE(2317), 1, + sym__return_type, + [53874] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1620), 1, + sym_declaration_list, + STATE(2314), 1, + sym_class_interface_clause, + [53890] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(950), 1, + sym_compound_statement, + STATE(2308), 1, + sym__return_type, + [53906] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3657), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53916] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3659), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53926] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_declaration_list, + STATE(2351), 1, + sym_class_interface_clause, + [53942] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3661), 1, + sym_integer, + STATE(2115), 1, + sym_string, + ACTIONS(109), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + [53956] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3663), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [53966] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3667), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(2130), 1, + sym_namespace_aliasing_clause, + ACTIONS(3665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3671), 1, + sym_nowdoc_string, + STATE(1770), 1, + aux_sym_nowdoc_body_repeat1, + ACTIONS(3669), 2, + sym_heredoc_end, + sym__new_line, + [53994] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2928), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2938), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3673), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2492), 1, + sym_static_modifier, + [54010] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1582), 1, + sym_formal_parameters, + STATE(2219), 1, + sym_reference_modifier, + [54026] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1102), 1, + sym_declaration_list, + STATE(2155), 1, + sym_class_interface_clause, + [54042] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_declaration_list, + STATE(2251), 1, + sym_class_interface_clause, + [54058] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1071), 1, + sym_declaration_list, + STATE(2252), 1, + sym_class_interface_clause, + [54074] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1585), 1, + sym_formal_parameters, + STATE(2263), 1, + sym_reference_modifier, + [54090] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3675), 1, + anon_sym_COMMA, + STATE(1729), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3361), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [54104] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + STATE(946), 1, + sym_declaration_list, + STATE(2297), 1, + sym_class_interface_clause, + [54120] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3343), 1, + anon_sym_COMMA, + STATE(1729), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3678), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [54134] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1668), 1, + sym_declaration_list, + STATE(2288), 1, + sym_class_interface_clause, + [54150] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3667), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(2198), 1, + sym_namespace_aliasing_clause, + ACTIONS(3680), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54164] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(941), 1, + sym_compound_statement, + STATE(2282), 1, + sym__return_type, + [54180] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3472), 1, + anon_sym_LBRACE, + STATE(1977), 1, + sym_enum_declaration_list, + STATE(2279), 1, + sym_class_interface_clause, + [54196] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1090), 1, + sym_compound_statement, + STATE(2315), 1, + sym__return_type, + [54212] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3682), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54226] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, + STATE(2134), 1, + sym_class_interface_clause, + [54242] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1598), 1, + sym_formal_parameters, + STATE(2226), 1, + sym_reference_modifier, + [54258] = 3, + ACTIONS(1506), 1, + sym_comment, + STATE(2451), 1, + sym_declare_directive, + ACTIONS(3684), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [54270] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_declaration_list, + STATE(2275), 1, + sym_class_interface_clause, + [54286] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1631), 1, + sym_declaration_list, + STATE(2333), 1, + sym_class_interface_clause, + [54302] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3688), 1, + anon_sym_EQ, + ACTIONS(3686), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [54314] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1612), 1, + sym_formal_parameters, + STATE(2326), 1, + sym_reference_modifier, + [54330] = 5, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3690), 1, + anon_sym_EQ, + ACTIONS(3692), 1, + anon_sym_RPAREN, + STATE(1946), 1, + aux_sym__list_destructing_repeat1, + [54346] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_enum_declaration_list, + STATE(2135), 1, + sym_class_interface_clause, + [54362] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(2277), 1, + sym_arguments, + ACTIONS(3325), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54376] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2938), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3694), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(3696), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2492), 1, + sym_static_modifier, + [54392] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3476), 4, + anon_sym_COMMA, + anon_sym_BSLASH, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [54402] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1574), 1, + sym_formal_parameters, + STATE(2262), 1, + sym_reference_modifier, + [54418] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1044), 1, + sym_compound_statement, + STATE(2137), 1, + sym__return_type, + [54434] = 3, + ACTIONS(1506), 1, + sym_comment, + STATE(2474), 1, + sym_declare_directive, + ACTIONS(3684), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [54446] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + STATE(957), 1, + sym_declaration_list, + STATE(2340), 1, + sym_class_interface_clause, + [54462] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1571), 1, + sym_formal_parameters, + STATE(2253), 1, + sym_reference_modifier, + [54478] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + ACTIONS(3698), 1, + anon_sym_LBRACE, + STATE(503), 1, + sym_declaration_list, + STATE(2242), 1, + sym_base_clause, + [54494] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3700), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [54504] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1814), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3702), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54518] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + STATE(958), 1, + sym_declaration_list, + STATE(2342), 1, + sym_class_interface_clause, + [54534] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3464), 1, + anon_sym_AMP, + STATE(2121), 2, + sym_variable_name, + sym_variable_reference, + [54548] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1812), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3706), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54562] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3710), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3708), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54576] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1737), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3713), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54590] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(517), 1, + sym_enum_declaration_list, + STATE(2284), 1, + sym_class_interface_clause, + [54606] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, + STATE(2222), 1, + sym_class_interface_clause, + [54622] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1896), 1, + sym_formal_parameters, + STATE(2289), 1, + sym_reference_modifier, + [54638] = 3, + ACTIONS(1506), 1, + sym_comment, + STATE(2519), 1, + sym_declare_directive, + ACTIONS(3684), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [54650] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3464), 1, + anon_sym_AMP, + STATE(1982), 2, + sym_variable_name, + sym_variable_reference, + [54664] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_compound_statement, + STATE(2370), 1, + sym__return_type, + [54680] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3717), 1, + anon_sym_COMMA, + STATE(1805), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3715), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3721), 1, + sym_nowdoc_string, + STATE(1770), 1, + aux_sym_nowdoc_body_repeat1, + ACTIONS(3719), 2, + sym_heredoc_end, + sym__new_line, + [54708] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1055), 1, + sym_compound_statement, + STATE(2292), 1, + sym__return_type, + [54724] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3724), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54738] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3472), 1, + anon_sym_LBRACE, + STATE(2026), 1, + sym_enum_declaration_list, + STATE(2347), 1, + sym_class_interface_clause, + [54754] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3663), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [54764] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(447), 1, + sym_declaration_list, + STATE(2141), 1, + sym_class_interface_clause, + [54780] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3343), 1, + anon_sym_COMMA, + STATE(1731), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3345), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [54794] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3726), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54808] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(961), 1, + sym_compound_statement, + STATE(2349), 1, + sym__return_type, + [54824] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3728), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54838] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3730), 1, + anon_sym_AMP, + STATE(1780), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3489), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [54852] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3489), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + [54862] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_COMMA, + STATE(1832), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3733), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54876] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3717), 1, + anon_sym_COMMA, + STATE(1833), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3737), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54890] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_declaration_list, + STATE(2367), 1, + sym_class_interface_clause, + [54906] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3739), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54920] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1898), 1, + sym_formal_parameters, + STATE(2293), 1, + sym_reference_modifier, + [54936] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_COMMA, + STATE(1829), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3743), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54950] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3313), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [54960] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1843), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3745), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54974] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1699), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [54984] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(963), 1, + sym_compound_statement, + STATE(2354), 1, + sym__return_type, + [55000] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3250), 1, + aux_sym_base_clause_token1, + STATE(2065), 1, + sym_declaration_list, + STATE(2145), 1, + sym_base_clause, + [55016] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1772), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3682), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55030] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3747), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55044] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1600), 1, + sym_formal_parameters, + STATE(2194), 1, + sym_reference_modifier, + [55060] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(935), 1, + sym_compound_statement, + STATE(2254), 1, + sym__return_type, + [55076] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_PIPE, + STATE(1837), 1, + aux_sym_type_list_repeat1, + ACTIONS(3749), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [55090] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3476), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BSLASH, + anon_sym_LBRACE, + [55100] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1857), 1, + sym_formal_parameters, + STATE(2177), 1, + sym_reference_modifier, + [55116] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_declaration_list, + STATE(2250), 1, + sym_class_interface_clause, + [55132] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1078), 1, + sym_compound_statement, + STATE(2214), 1, + sym__return_type, + [55148] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3753), 1, + anon_sym_AMP, + STATE(1780), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3411), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [55162] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_COMMA, + STATE(1804), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3756), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55176] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_COMMA, + STATE(1848), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3758), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55190] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3717), 1, + anon_sym_COMMA, + STATE(1847), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3760), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55204] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1817), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3762), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55218] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(454), 1, + sym_declaration_list, + STATE(2142), 1, + sym_class_interface_clause, + [55234] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3764), 1, + anon_sym_SEMI, + ACTIONS(3766), 1, + anon_sym_LBRACE, + ACTIONS(3768), 1, + sym__automatic_semicolon, + STATE(1351), 1, + sym_compound_statement, + [55250] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3772), 1, + anon_sym_PIPE, + STATE(1809), 1, + aux_sym_type_list_repeat1, + ACTIONS(3770), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [55264] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_COMMA, + STATE(1840), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3775), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55278] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3777), 1, + sym_integer, + STATE(2158), 1, + sym_string, + ACTIONS(109), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + [55292] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1814), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3779), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55306] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1838), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3781), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55320] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3785), 1, + anon_sym_COMMA, + STATE(1814), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3783), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55334] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_LBRACE, + ACTIONS(3788), 1, + anon_sym_SEMI, + ACTIONS(3790), 1, + sym__automatic_semicolon, + STATE(1358), 1, + sym_compound_statement, + [55350] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1757), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3792), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55364] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1814), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3794), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55378] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_LBRACE, + ACTIONS(3796), 1, + anon_sym_SEMI, + ACTIONS(3798), 1, + sym__automatic_semicolon, + STATE(1361), 1, + sym_compound_statement, + [55394] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_COMMA, + STATE(1820), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3800), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55408] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_COMMA, + STATE(1829), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3775), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55422] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1779), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3802), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55436] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_AMP, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1584), 1, + sym_formal_parameters, + STATE(2366), 1, + sym_reference_modifier, + [55452] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_LBRACE, + ACTIONS(3804), 1, + anon_sym_SEMI, + ACTIONS(3806), 1, + sym__automatic_semicolon, + STATE(1357), 1, + sym_compound_statement, + [55468] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_compound_statement, + STATE(2136), 1, + sym__return_type, + [55484] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3808), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [55494] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3700), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [55504] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3361), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [55514] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3810), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [55524] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3814), 1, + anon_sym_COMMA, + STATE(1829), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3812), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55538] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(440), 1, + sym_declaration_list, + STATE(2150), 1, + sym_class_interface_clause, + [55554] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3808), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [55564] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_COMMA, + STATE(1848), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3817), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55578] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3717), 1, + anon_sym_COMMA, + STATE(1847), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3819), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55592] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_COMMA, + STATE(1787), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3821), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55606] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1054), 1, + sym_compound_statement, + STATE(2206), 1, + sym__return_type, + [55622] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_COMMA, + STATE(1829), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3821), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55636] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_PIPE, + STATE(1809), 1, + aux_sym_type_list_repeat1, + ACTIONS(3823), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [55650] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1814), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3825), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55664] = 3, + ACTIONS(1506), 1, + sym_comment, + STATE(2406), 1, + sym_declare_directive, + ACTIONS(3684), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [55676] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_COMMA, + STATE(1829), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3827), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55690] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1777), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3747), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55704] = 5, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + STATE(925), 1, + sym_compound_statement, + STATE(2274), 1, + sym__return_type, + [55720] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3802), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55734] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1120), 1, + sym_compound_statement, + STATE(2147), 1, + sym__return_type, + [55750] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3810), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [55760] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1676), 1, + sym_declaration_list, + STATE(2278), 1, + sym_class_interface_clause, + [55776] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3831), 1, + anon_sym_COMMA, + STATE(1847), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3829), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55790] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_COMMA, + STATE(1848), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3834), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55804] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3252), 1, + aux_sym_class_interface_clause_token1, + STATE(928), 1, + sym_declaration_list, + STATE(2377), 1, + sym_class_interface_clause, + [55820] = 3, + ACTIONS(1388), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1386), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55831] = 4, + ACTIONS(775), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3839), 1, + anon_sym_COMMA, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [55844] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3841), 1, + anon_sym_COMMA, + ACTIONS(3843), 1, + anon_sym_RPAREN, + STATE(1897), 1, + aux_sym_array_creation_expression_repeat1, + [55857] = 3, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + STATE(1769), 2, + sym_dynamic_variable_name, + sym_variable_name, + [55868] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3845), 1, + anon_sym_SQUOTE, + ACTIONS(3847), 1, + anon_sym_DQUOTE, + ACTIONS(3849), 1, + sym_heredoc_start, + [55881] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2936), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(3851), 1, + aux_sym_class_declaration_token1, + STATE(2498), 1, + sym_readonly_modifier, + [55894] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3397), 1, + anon_sym_BSLASH, + ACTIONS(3853), 1, + sym_name, + STATE(2550), 1, + sym_namespace_name, + [55907] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3855), 1, + anon_sym_EQ_GT, + STATE(2457), 1, + sym__return_type, + [55920] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LBRACE, + ACTIONS(3859), 1, + anon_sym_COLON, + STATE(467), 1, + sym_switch_block, + [55933] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3861), 1, + anon_sym_COMMA, + ACTIONS(3864), 1, + anon_sym_RPAREN, + STATE(1859), 1, + aux_sym_array_creation_expression_repeat1, + [55946] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3690), 1, + anon_sym_EQ, + ACTIONS(3866), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55957] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3868), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, + anon_sym_RBRACK, + STATE(1891), 1, + aux_sym__array_destructing_repeat1, + [55970] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_COMMA, + ACTIONS(3874), 1, + anon_sym_RBRACK, + STATE(1892), 1, + aux_sym_array_creation_expression_repeat1, + [55983] = 4, + ACTIONS(767), 1, + anon_sym_RBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3876), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_array_creation_expression_repeat1, + [55996] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3878), 1, + anon_sym_COMMA, + ACTIONS(3880), 1, + anon_sym_RPAREN, + STATE(1888), 1, + aux_sym_formal_parameters_repeat1, + [56009] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3044), 1, + anon_sym_RBRACK, + ACTIONS(3882), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_attribute_group_repeat1, + [56022] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3868), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, + anon_sym_RBRACK, + STATE(1893), 1, + aux_sym__array_destructing_repeat1, + [56035] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3884), 1, + anon_sym_COMMA, + ACTIONS(3886), 1, + anon_sym_RBRACK, + STATE(1894), 1, + aux_sym_attribute_group_repeat1, + [56048] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3888), 1, + sym__new_line, + ACTIONS(3890), 1, + sym_heredoc_end, + STATE(2280), 1, + sym_heredoc_body, + [56061] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2936), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(3892), 1, + aux_sym_class_declaration_token1, + STATE(2523), 1, + sym_readonly_modifier, + [56074] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2936), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(3894), 1, + aux_sym_class_declaration_token1, + STATE(2513), 1, + sym_readonly_modifier, + [56087] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3896), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, + anon_sym_RPAREN, + STATE(1921), 1, + aux_sym_arguments_repeat1, + [56100] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1743), 1, + sym_variable_name, + STATE(1899), 1, + sym_static_variable_declaration, + [56113] = 3, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + STATE(1900), 2, + sym_dynamic_variable_name, + sym_variable_name, + [56124] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2936), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(3900), 1, + aux_sym_class_declaration_token1, + STATE(2419), 1, + sym_readonly_modifier, + [56137] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3888), 1, + sym__new_line, + ACTIONS(3902), 1, + sym_heredoc_end, + STATE(2199), 1, + sym_heredoc_body, + [56150] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3904), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56159] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3906), 1, + anon_sym_COMMA, + ACTIONS(3908), 1, + anon_sym_RBRACK, + STATE(1865), 1, + aux_sym_attribute_group_repeat1, + [56172] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3910), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACK, + STATE(1863), 1, + aux_sym_array_creation_expression_repeat1, + [56185] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(2055), 1, + sym_switch_block, + [56198] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3918), 1, + sym_name, + ACTIONS(3920), 1, + anon_sym_LBRACE, + STATE(2336), 1, + sym_namespace_use_group, + [56211] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3922), 1, + anon_sym_DOT_DOT_DOT, + STATE(1906), 1, + sym_variable_name, + [56224] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(3926), 1, + anon_sym_RPAREN, + STATE(1907), 1, + aux_sym_formal_parameters_repeat1, + [56237] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_EQ, + ACTIONS(3928), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56248] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3385), 1, + anon_sym_LBRACE, + STATE(2395), 1, + sym__return_type, + [56261] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3932), 1, + anon_sym_EQ_GT, + STATE(2404), 1, + sym__return_type, + [56274] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3934), 1, + anon_sym_COMMA, + ACTIONS(3936), 1, + anon_sym_RPAREN, + STATE(1932), 1, + aux_sym_array_creation_expression_repeat1, + [56287] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3938), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [56296] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1875), 1, + anon_sym_RPAREN, + ACTIONS(3940), 1, + anon_sym_COMMA, + STATE(1973), 1, + aux_sym_formal_parameters_repeat1, + [56309] = 4, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1628), 1, + anon_sym_RPAREN, + STATE(1942), 1, + aux_sym__list_destructing_repeat1, + [56322] = 4, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1628), 1, + anon_sym_RPAREN, + STATE(1947), 1, + aux_sym__list_destructing_repeat1, + [56335] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3868), 1, + anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_RBRACK, + STATE(1893), 1, + aux_sym__array_destructing_repeat1, + [56348] = 4, + ACTIONS(809), 1, + anon_sym_RBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3944), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_array_creation_expression_repeat1, + [56361] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3946), 1, + anon_sym_COMMA, + ACTIONS(3949), 1, + anon_sym_RBRACK, + STATE(1893), 1, + aux_sym__array_destructing_repeat1, + [56374] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3046), 1, + anon_sym_RBRACK, + ACTIONS(3951), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_attribute_group_repeat1, + [56387] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3953), 1, + anon_sym_COMMA, + ACTIONS(3955), 1, + anon_sym_RPAREN, + STATE(1959), 1, + aux_sym_arguments_repeat1, + [56400] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3957), 1, + anon_sym_EQ_GT, + STATE(2416), 1, + sym__return_type, + [56413] = 4, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3959), 1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_array_creation_expression_repeat1, + [56426] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3961), 1, + anon_sym_EQ_GT, + STATE(2417), 1, + sym__return_type, + [56439] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3834), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56448] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3829), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56457] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3918), 1, + sym_name, + ACTIONS(3920), 1, + anon_sym_LBRACE, + STATE(2313), 1, + sym_namespace_use_group, + [56470] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3920), 1, + anon_sym_LBRACE, + ACTIONS(3963), 1, + sym_name, + STATE(2313), 1, + sym_namespace_use_group, + [56483] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3965), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56492] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3812), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56501] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_RBRACE, + STATE(1949), 1, + aux_sym_match_block_repeat1, + [56514] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3973), 1, + anon_sym_EQ, + ACTIONS(3971), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56525] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_RPAREN, + ACTIONS(3975), 1, + anon_sym_COMMA, + STATE(1973), 1, + aux_sym_formal_parameters_repeat1, + [56538] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3977), 1, + anon_sym_DOT_DOT_DOT, + STATE(1974), 1, + sym_variable_name, + [56551] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_EQ, + ACTIONS(3979), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56562] = 3, + ACTIONS(1356), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1354), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56573] = 3, + ACTIONS(1208), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1206), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56584] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(3983), 1, + anon_sym_DOT_DOT_DOT, + STATE(1975), 1, + sym_variable_name, + [56597] = 3, + ACTIONS(1212), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1210), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56608] = 3, + ACTIONS(1220), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1218), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56619] = 3, + ACTIONS(1228), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1226), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56630] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_EQ, + ACTIONS(3985), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56641] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(3511), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym__return_type, + [56654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + sym__new_line, + ACTIONS(3991), 1, + sym_heredoc_end, + STATE(2339), 1, + sym_nowdoc_body, + [56667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3888), 1, + sym__new_line, + ACTIONS(3993), 1, + sym_heredoc_end, + STATE(2337), 1, + sym_heredoc_body, + [56680] = 3, + ACTIONS(1236), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1234), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56691] = 4, + ACTIONS(771), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3995), 1, + anon_sym_COMMA, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [56704] = 3, + ACTIONS(1124), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1122), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56715] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3708), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56724] = 3, + ACTIONS(1124), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1122), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56735] = 3, + ACTIONS(1484), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1482), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56746] = 3, + ACTIONS(1288), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1286), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56757] = 3, + ACTIONS(1296), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1294), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56768] = 3, + ACTIONS(1300), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1298), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56779] = 3, + ACTIONS(1300), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1298), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56790] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3343), 1, + anon_sym_COMMA, + ACTIONS(3570), 1, + anon_sym_LBRACE, + STATE(1986), 1, + aux_sym_base_clause_repeat1, + [56803] = 3, + ACTIONS(1128), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1126), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56814] = 4, + ACTIONS(773), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_array_creation_expression_repeat1, + [56827] = 3, + ACTIONS(1368), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1366), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56838] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3060), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + anon_sym_RPAREN, + STATE(1987), 1, + aux_sym_unset_statement_repeat1, + [56851] = 3, + ACTIONS(1428), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1426), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56862] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4003), 1, + aux_sym_else_clause_token1, + ACTIONS(4001), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [56873] = 3, + ACTIONS(1452), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1450), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56884] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(4005), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56895] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3690), 1, + anon_sym_EQ, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56906] = 3, + ACTIONS(1460), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1458), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56917] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4011), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [56926] = 4, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4013), 1, + anon_sym_RPAREN, + STATE(1947), 1, + aux_sym__list_destructing_repeat1, + [56939] = 3, + ACTIONS(1160), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1158), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56950] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4015), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [56959] = 3, + ACTIONS(1172), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1170), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56970] = 4, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4017), 1, + anon_sym_RPAREN, + STATE(1947), 1, + aux_sym__list_destructing_repeat1, + [56983] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1641), 1, + anon_sym_RPAREN, + ACTIONS(4019), 1, + anon_sym_COMMA, + STATE(1947), 1, + aux_sym__list_destructing_repeat1, + [56996] = 3, + ACTIONS(1400), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1398), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57007] = 4, + ACTIONS(830), 1, + anon_sym_RBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4022), 1, + anon_sym_COMMA, + STATE(2094), 1, + aux_sym_match_block_repeat1, + [57020] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4024), 1, + anon_sym_COMMA, + ACTIONS(4026), 1, + anon_sym_RBRACE, + STATE(1992), 1, + aux_sym_match_block_repeat1, + [57033] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3864), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [57042] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3864), 1, + anon_sym_RBRACK, + ACTIONS(4028), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_array_creation_expression_repeat1, + [57055] = 3, + ACTIONS(1400), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1398), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57066] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4031), 1, + anon_sym_COMMA, + ACTIONS(4034), 1, + anon_sym_RBRACK, + STATE(1954), 1, + aux_sym_attribute_group_repeat1, + [57079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + sym__new_line, + ACTIONS(4036), 1, + sym_heredoc_end, + STATE(2232), 1, + sym_nowdoc_body, + [57092] = 3, + ACTIONS(1440), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1438), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3888), 1, + sym__new_line, + ACTIONS(4038), 1, + sym_heredoc_end, + STATE(2113), 1, + sym_heredoc_body, + [57116] = 3, + ACTIONS(1464), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1462), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57127] = 4, + ACTIONS(785), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4040), 1, + anon_sym_COMMA, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [57140] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(4042), 1, + anon_sym_EQ_GT, + STATE(2491), 1, + sym__return_type, + [57153] = 3, + ACTIONS(1464), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1462), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57164] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(4044), 1, + anon_sym_EQ_GT, + STATE(2501), 1, + sym__return_type, + [57177] = 3, + ACTIONS(1456), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1454), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57188] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(4046), 1, + anon_sym_EQ_GT, + STATE(2502), 1, + sym__return_type, + [57201] = 3, + ACTIONS(1456), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1454), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57212] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3920), 1, + anon_sym_LBRACE, + ACTIONS(3963), 1, + sym_name, + STATE(2200), 1, + sym_namespace_use_group, + [57225] = 3, + ACTIONS(1380), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1378), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57236] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4048), 1, + anon_sym_COMMA, + ACTIONS(4050), 1, + anon_sym_RBRACE, + STATE(2039), 1, + aux_sym_namespace_use_group_repeat1, + [57249] = 3, + ACTIONS(1364), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1362), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57260] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4052), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57271] = 3, + ACTIONS(1324), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1322), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57282] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4058), 1, + anon_sym_EQ, + ACTIONS(4056), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57293] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4060), 1, + anon_sym_COMMA, + ACTIONS(4063), 1, + anon_sym_RPAREN, + STATE(1973), 1, + aux_sym_formal_parameters_repeat1, + [57306] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_EQ, + ACTIONS(4065), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57317] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4071), 1, + anon_sym_EQ, + ACTIONS(4069), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57328] = 3, + ACTIONS(1348), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1346), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57339] = 3, + ACTIONS(1336), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1334), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57350] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4075), 1, + anon_sym_EQ, + ACTIONS(4073), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57361] = 3, + ACTIONS(1384), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1382), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57372] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(4077), 1, + anon_sym_DOT_DOT_DOT, + STATE(2066), 1, + sym_variable_name, + [57385] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4081), 1, + anon_sym_EQ, + ACTIONS(4079), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57396] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4083), 1, + anon_sym_COMMA, + ACTIONS(4085), 1, + anon_sym_RPAREN, + STATE(2073), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [57409] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3690), 1, + anon_sym_EQ, + ACTIONS(4087), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57420] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_EQ, + ACTIONS(4089), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57431] = 3, + ACTIONS(1308), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1306), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57442] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3343), 1, + anon_sym_COMMA, + ACTIONS(4093), 1, + anon_sym_LBRACE, + STATE(1729), 1, + aux_sym_base_clause_repeat1, + [57455] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_RPAREN, + ACTIONS(4095), 1, + anon_sym_COMMA, + STATE(1987), 1, + aux_sym_unset_statement_repeat1, + [57468] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(4098), 1, + anon_sym_RPAREN, + STATE(2556), 1, + sym_variable_name, + [57481] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + ACTIONS(4100), 1, + anon_sym_RPAREN, + STATE(2434), 1, + sym_variable_name, + [57494] = 3, + ACTIONS(1284), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1282), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57505] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3920), 1, + anon_sym_LBRACE, + ACTIONS(3963), 1, + sym_name, + STATE(2307), 1, + sym_namespace_use_group, + [57518] = 4, + ACTIONS(832), 1, + anon_sym_RBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4102), 1, + anon_sym_COMMA, + STATE(2094), 1, + aux_sym_match_block_repeat1, + [57531] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2431), 1, + anon_sym_COMMA, + ACTIONS(4104), 1, + anon_sym_EQ_GT, + STATE(2096), 1, + aux_sym_match_condition_list_repeat1, + [57544] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3060), 1, + anon_sym_COMMA, + ACTIONS(4106), 1, + anon_sym_RPAREN, + STATE(1987), 1, + aux_sym_unset_statement_repeat1, + [57557] = 3, + ACTIONS(1252), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1250), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57568] = 4, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4108), 1, + anon_sym_RPAREN, + STATE(2102), 1, + aux_sym__list_destructing_repeat1, + [57581] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3920), 1, + anon_sym_LBRACE, + ACTIONS(3963), 1, + sym_name, + STATE(2295), 1, + sym_namespace_use_group, + [57594] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3918), 1, + sym_name, + ACTIONS(3920), 1, + anon_sym_LBRACE, + STATE(2295), 1, + sym_namespace_use_group, + [57607] = 3, + ACTIONS(1252), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1250), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57618] = 4, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3080), 1, + anon_sym_RPAREN, + STATE(2100), 1, + aux_sym__list_destructing_repeat1, + [57631] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4110), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57640] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4112), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57649] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 1, + anon_sym_, + ACTIONS(4116), 1, + sym_nowdoc_string, + STATE(1722), 1, + aux_sym_nowdoc_body_repeat1, + [57662] = 3, + ACTIONS(1240), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1238), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57673] = 3, + ACTIONS(1232), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1230), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57684] = 3, + ACTIONS(1204), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1202), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57695] = 3, + ACTIONS(1204), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1202), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57706] = 3, + ACTIONS(1168), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1166), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57717] = 3, + ACTIONS(1164), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1162), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57728] = 3, + ACTIONS(1156), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1154), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57739] = 3, + ACTIONS(1148), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1146), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57750] = 3, + ACTIONS(1132), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1130), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57761] = 3, + ACTIONS(1340), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1338), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57772] = 3, + ACTIONS(1312), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1310), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57783] = 3, + ACTIONS(1372), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1370), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57794] = 3, + ACTIONS(1444), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1442), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57805] = 3, + ACTIONS(1276), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1274), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57816] = 3, + ACTIONS(1260), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1258), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57827] = 3, + ACTIONS(1264), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1262), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57838] = 3, + ACTIONS(1480), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1478), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57849] = 3, + ACTIONS(1468), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1466), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57860] = 3, + ACTIONS(1408), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1406), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57871] = 3, + ACTIONS(1408), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1406), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57882] = 3, + ACTIONS(1396), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1394), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57893] = 3, + ACTIONS(1360), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1358), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57904] = 3, + ACTIONS(1328), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1326), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57915] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1692), 1, + sym_variable_name, + STATE(1760), 1, + sym_property_element, + [57928] = 3, + ACTIONS(1320), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1318), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57939] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4118), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [57948] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3918), 1, + sym_name, + ACTIONS(3920), 1, + anon_sym_LBRACE, + STATE(2259), 1, + sym_namespace_use_group, + [57961] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COMMA, + ACTIONS(4123), 1, + anon_sym_RPAREN, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [57974] = 3, + ACTIONS(1248), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1246), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57985] = 3, + ACTIONS(1344), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1342), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57996] = 3, + ACTIONS(1448), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1446), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58007] = 3, + ACTIONS(1436), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1434), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58018] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(4125), 1, + anon_sym_EQ_GT, + STATE(2585), 1, + sym__return_type, + [58031] = 3, + ACTIONS(1136), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1134), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58042] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_SQUOTE, + ACTIONS(4129), 1, + anon_sym_DQUOTE, + ACTIONS(4131), 1, + sym_heredoc_start, + [58055] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4048), 1, + anon_sym_COMMA, + ACTIONS(4133), 1, + anon_sym_RBRACE, + STATE(2107), 1, + aux_sym_namespace_use_group_repeat1, + [58068] = 3, + ACTIONS(1316), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1314), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58079] = 3, + ACTIONS(1432), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1430), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58090] = 3, + ACTIONS(1476), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1474), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58101] = 3, + ACTIONS(1472), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1470), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58112] = 3, + ACTIONS(1416), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1414), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58123] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4135), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [58132] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4137), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [58141] = 3, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + STATE(1783), 2, + sym_dynamic_variable_name, + sym_variable_name, + [58152] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4139), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58163] = 3, + ACTIONS(1268), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1266), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58174] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4145), 1, + anon_sym_EQ, + ACTIONS(4143), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58185] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_COMMA, + ACTIONS(4149), 1, + anon_sym_RPAREN, + STATE(2060), 1, + aux_sym_arguments_repeat1, + [58198] = 3, + ACTIONS(1256), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1254), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58209] = 3, + ACTIONS(1244), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1242), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58220] = 3, + ACTIONS(1224), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1222), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58231] = 3, + ACTIONS(1152), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1150), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58242] = 3, + ACTIONS(1176), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1174), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58253] = 3, + ACTIONS(1184), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1182), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58264] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4153), 1, + anon_sym_EQ, + ACTIONS(4151), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58275] = 3, + ACTIONS(1188), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1186), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58286] = 4, + ACTIONS(755), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4155), 1, + anon_sym_COMMA, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [58299] = 3, + ACTIONS(1192), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1190), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58310] = 3, + ACTIONS(1196), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1194), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58321] = 3, + ACTIONS(1216), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1214), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58332] = 3, + ACTIONS(1272), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1270), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58343] = 3, + ACTIONS(1280), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1278), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58354] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_EQ, + ACTIONS(4157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58365] = 3, + ACTIONS(1292), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1290), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58376] = 3, + ACTIONS(1304), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1302), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58387] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3417), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [58396] = 3, + ACTIONS(1376), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1374), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58407] = 3, + ACTIONS(1392), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1390), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58418] = 3, + ACTIONS(1412), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1410), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58429] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3582), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, + anon_sym_COMMA, + STATE(2112), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [58442] = 3, + ACTIONS(1332), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1330), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58453] = 3, + ACTIONS(1180), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1178), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58464] = 3, + ACTIONS(1140), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1138), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58475] = 3, + ACTIONS(1404), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1402), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58486] = 3, + ACTIONS(1420), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1418), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58497] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1692), 1, + sym_variable_name, + STATE(1816), 1, + sym_property_element, + [58510] = 3, + ACTIONS(1424), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1422), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58521] = 3, + ACTIONS(1352), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1350), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58532] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1692), 1, + sym_variable_name, + STATE(2110), 1, + sym_property_element, + [58545] = 3, + ACTIONS(1200), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1198), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58556] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2717), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + sym_name, + [58565] = 3, + ACTIONS(1144), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1142), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58576] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4163), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [58585] = 4, + ACTIONS(783), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_COMMA, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [58598] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3361), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [58607] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4167), 1, + anon_sym_COMMA, + ACTIONS(4169), 1, + anon_sym_RPAREN, + STATE(2087), 1, + aux_sym_arguments_repeat1, + [58620] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4173), 1, + anon_sym_EQ, + ACTIONS(4171), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58631] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4177), 1, + aux_sym_else_clause_token1, + ACTIONS(4175), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [58642] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4179), 1, + anon_sym_COMMA, + ACTIONS(4181), 1, + anon_sym_RPAREN, + STATE(2098), 1, + aux_sym_arguments_repeat1, + [58655] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4183), 1, + sym_name, + ACTIONS(4185), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58666] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COMMA, + ACTIONS(4190), 1, + anon_sym_RBRACE, + STATE(2094), 1, + aux_sym_match_block_repeat1, + [58679] = 4, + ACTIONS(795), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_COMMA, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [58692] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_EQ_GT, + ACTIONS(4194), 1, + anon_sym_COMMA, + STATE(2096), 1, + aux_sym_match_condition_list_repeat1, + [58705] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_COMMA, + ACTIONS(4199), 1, + anon_sym_RPAREN, + STATE(2095), 1, + aux_sym_arguments_repeat1, + [58718] = 4, + ACTIONS(777), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4201), 1, + anon_sym_COMMA, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [58731] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4203), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58740] = 4, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_RPAREN, + STATE(1947), 1, + aux_sym__list_destructing_repeat1, + [58753] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4207), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58762] = 4, + ACTIONS(819), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4209), 1, + anon_sym_RPAREN, + STATE(1947), 1, + aux_sym__list_destructing_repeat1, + [58775] = 4, + ACTIONS(757), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym_COMMA, + STATE(2031), 1, + aux_sym_arguments_repeat1, + [58788] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4213), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58797] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4215), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58806] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(4219), 1, + anon_sym_RPAREN, + STATE(2103), 1, + aux_sym_arguments_repeat1, + [58819] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_COMMA, + ACTIONS(4224), 1, + anon_sym_RBRACE, + STATE(2107), 1, + aux_sym_namespace_use_group_repeat1, + [58832] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4226), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58843] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3770), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + [58852] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3783), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [58861] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4230), 1, + anon_sym_COMMA, + ACTIONS(4232), 1, + anon_sym_RPAREN, + STATE(1851), 1, + aux_sym_arguments_repeat1, + [58874] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4234), 1, + anon_sym_COMMA, + ACTIONS(4237), 1, + anon_sym_RPAREN, + STATE(2112), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [58887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 1, + sym__new_line, + ACTIONS(4241), 1, + sym_heredoc_end, + [58897] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4243), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58905] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4245), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58913] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_LBRACE, + STATE(1979), 1, + sym_enum_declaration_list, + [58923] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4247), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58931] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4249), 1, + sym_name, + STATE(2550), 1, + sym_namespace_name, + [58941] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(437), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58949] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_LBRACE, + STATE(431), 1, + sym_compound_statement, + [58959] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4237), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58967] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4254), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [58975] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4256), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58983] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(1693), 1, + sym_compound_statement, + [58993] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4249), 1, + sym_name, + STATE(2524), 1, + sym_namespace_name, + [59003] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym_parenthesized_expression, + [59013] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4260), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59021] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(667), 1, + sym_arguments, + [59031] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4224), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59039] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4262), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59047] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4249), 1, + sym_name, + STATE(2518), 1, + sym_namespace_name, + [59057] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym_parenthesized_expression, + [59067] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(440), 1, + sym_declaration_list, + [59077] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_declaration_list, + [59087] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(555), 1, + sym_enum_declaration_list, + [59097] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_compound_statement, + [59107] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1116), 1, + sym_compound_statement, + [59117] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1132), 1, + sym_compound_statement, + [59127] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_LPAREN, + STATE(2190), 1, + sym_parenthesized_expression, + [59137] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2679), 1, + anon_sym_RPAREN, + ACTIONS(4266), 1, + anon_sym_EQ, + [59147] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_declaration_list, + [59157] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(444), 1, + sym_declaration_list, + [59167] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_LPAREN, + STATE(1858), 1, + sym_parenthesized_expression, + [59177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4268), 1, + anon_sym_SQUOTE, + ACTIONS(4270), 1, + sym_string_value, + [59187] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym_declaration_list, + [59197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3669), 2, + sym_heredoc_end, + sym__new_line, + [59205] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1076), 1, + sym_compound_statement, + [59215] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1673), 1, + anon_sym_LPAREN, + STATE(752), 1, + sym_arguments, + [59225] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(860), 1, + sym_arguments, + [59235] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(451), 1, + sym_declaration_list, + [59245] = 3, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(474), 1, + sym_compound_statement, + [59255] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4272), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [59263] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3106), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59271] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4274), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59279] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1127), 1, + sym_declaration_list, + [59289] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3690), 2, + anon_sym_EQ, + anon_sym_RPAREN, + [59297] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2527), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59305] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4276), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59313] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(489), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59321] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4278), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59329] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4190), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59337] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4280), 1, + anon_sym_SEMI, + ACTIONS(4282), 1, + sym__automatic_semicolon, + [59347] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4185), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59355] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4284), 1, + sym_name, + STATE(2486), 1, + sym_namespace_name, + [59365] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1676), 1, + sym_declaration_list, + [59375] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4249), 1, + sym_name, + STATE(2439), 1, + sym_namespace_name, + [59385] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_LBRACE, + STATE(425), 1, + sym_compound_statement, + [59395] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4287), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59403] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1884), 1, + sym_formal_parameters, + [59413] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3698), 1, + anon_sym_LBRACE, + STATE(506), 1, + sym_declaration_list, + [59423] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4289), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59431] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4291), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59439] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4293), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59447] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4295), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59455] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4297), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59463] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(2209), 1, + aux_sym_namespace_name_repeat1, + [59473] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1885), 1, + sym_formal_parameters, + [59483] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4299), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [59491] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + STATE(928), 1, + sym_declaration_list, + [59501] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4301), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59509] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4303), 1, + anon_sym_LPAREN, + ACTIONS(4305), 1, + anon_sym_RPAREN, + [59519] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2123), 1, + sym_variable_name, + [59529] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59537] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(790), 1, + sym_arguments, + [59547] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4309), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59555] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4311), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59563] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2108), 1, + sym_variable_name, + [59573] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4313), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59581] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4315), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59589] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4317), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym_match_block, + [59599] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2453), 1, + anon_sym_RPAREN, + ACTIONS(4266), 1, + anon_sym_EQ, + [59609] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3965), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59617] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4319), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59625] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1615), 1, + sym_formal_parameters, + [59635] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(924), 1, + sym_compound_statement, + [59645] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4321), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_formal_parameters, + [59655] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4323), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [59663] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 1, + sym__new_line, + ACTIONS(4328), 1, + sym_heredoc_end, + [59681] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4330), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59689] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(1646), 1, + sym_compound_statement, + [59699] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2735), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4332), 1, + aux_sym_namespace_use_declaration_token2, + [59709] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(23), 1, + sym_parenthesized_expression, + [59719] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_LPAREN, + STATE(2224), 1, + sym_parenthesized_expression, + [59729] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_LPAREN, + STATE(1879), 1, + sym_parenthesized_expression, + [59739] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1059), 1, + sym_compound_statement, + [59749] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(2054), 1, + sym_compound_statement, + [59759] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym_parenthesized_expression, + [59769] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4334), 1, + anon_sym_BSLASH, + STATE(1658), 1, + aux_sym_namespace_name_repeat1, + [59779] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2383), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [59787] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, + [59797] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2735), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4337), 1, + aux_sym_namespace_use_declaration_token2, + [59807] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4123), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59815] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_compound_statement, + [59825] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_compound_statement, + [59835] = 3, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(486), 1, + sym_compound_statement, + [59845] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1042), 1, + sym_compound_statement, + [59855] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(612), 1, + sym_arguments, + [59865] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1607), 1, + sym_formal_parameters, + [59875] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4249), 1, + sym_name, + STATE(2414), 1, + sym_namespace_name, + [59885] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(447), 1, + sym_declaration_list, + [59895] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_declaration_list, + [59905] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(1695), 1, + sym_compound_statement, + [59915] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4339), 1, + anon_sym_LBRACE, + STATE(902), 1, + sym_match_block, + [59925] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4341), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59933] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1579), 1, + sym_formal_parameters, + [59943] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2248), 1, + sym_variable_name, + [59953] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4343), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59961] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4345), 2, + anon_sym_string, + anon_sym_int, + [59969] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59977] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(964), 1, + sym_compound_statement, + [59987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4347), 1, + sym__new_line, + ACTIONS(4349), 1, + sym_heredoc_end, + [59997] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_parenthesized_expression, + [60007] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(73), 1, + sym_parenthesized_expression, + [60017] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + STATE(2067), 1, + sym_declaration_list, + [60027] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_LPAREN, + STATE(2320), 1, + sym_parenthesized_expression, + [60037] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60045] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3114), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [60053] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1917), 1, + sym_formal_parameters, + [60063] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4087), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [60071] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1130), 1, + sym_compound_statement, + [60081] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3698), 1, + anon_sym_LBRACE, + STATE(558), 1, + sym_declaration_list, + [60091] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4355), 2, + anon_sym_string, + anon_sym_int, + [60099] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4357), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60107] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4359), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60115] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60123] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym_enum_declaration_list, + [60133] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4363), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60141] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(473), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60149] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1691), 1, + sym_declaration_list, + [60159] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1102), 1, + sym_declaration_list, + [60169] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1103), 1, + sym_declaration_list, + [60179] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1613), 1, + sym_formal_parameters, + [60189] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(932), 1, + sym_compound_statement, + [60199] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4365), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60207] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(445), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60215] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(1698), 1, + sym_compound_statement, + [60225] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_declaration_list, + [60235] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3743), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60243] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4367), 1, + anon_sym_SEMI, + ACTIONS(4369), 1, + sym__automatic_semicolon, + [60253] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4371), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60261] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1611), 1, + sym_formal_parameters, + [60271] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1546), 1, + sym_formal_parameters, + [60281] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4373), 2, + anon_sym_string, + anon_sym_int, + [60289] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4321), 1, + anon_sym_LPAREN, + STATE(1618), 1, + sym_formal_parameters, + [60299] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4375), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60307] = 3, + ACTIONS(447), 1, + anon_sym_COLON, + ACTIONS(1506), 1, + sym_comment, + STATE(2091), 1, + sym_colon_block, + [60317] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2469), 1, + anon_sym_RPAREN, + ACTIONS(4266), 1, + anon_sym_EQ, + [60327] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_compound_statement, + [60337] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_declaration_list, + [60347] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_LPAREN, + STATE(2360), 1, + sym_parenthesized_expression, + [60357] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_declaration_list, + [60367] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(962), 1, + sym_compound_statement, + [60377] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(960), 1, + sym_compound_statement, + [60387] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1703), 1, + sym_declaration_list, + [60397] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2487), 1, + anon_sym_RPAREN, + ACTIONS(4266), 1, + anon_sym_EQ, + [60407] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4377), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [60415] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1630), 1, + sym_declaration_list, + [60425] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_LBRACE, + STATE(1940), 1, + sym_enum_declaration_list, + [60435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 1, + sym__new_line, + ACTIONS(4381), 1, + sym_heredoc_end, + [60445] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4383), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60453] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(933), 1, + sym_compound_statement, + [60463] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(2075), 1, + sym_compound_statement, + [60473] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(468), 1, + sym_enum_declaration_list, + [60483] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2521), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60491] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(934), 1, + sym_compound_statement, + [60501] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(936), 1, + sym_compound_statement, + [60511] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1699), 1, + sym_declaration_list, + [60521] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1960), 1, + sym_formal_parameters, + [60531] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4385), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60539] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2180), 1, + sym_variable_name, + [60549] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1067), 1, + sym_compound_statement, + [60559] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1962), 1, + sym_formal_parameters, + [60569] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1093), 1, + sym_compound_statement, + [60579] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4387), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60587] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2183), 1, + sym_variable_name, + [60597] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + STATE(937), 1, + sym_declaration_list, + [60607] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2058), 1, + sym_variable_name, + [60617] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4389), 1, + anon_sym_SEMI, + ACTIONS(4391), 1, + sym__automatic_semicolon, + [60627] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2188), 1, + sym_variable_name, + [60637] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4393), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60645] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(1704), 1, + sym_compound_statement, + [60655] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2189), 1, + sym_variable_name, + [60665] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4395), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60673] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4397), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60681] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4063), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60689] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4399), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60697] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(939), 1, + sym_compound_statement, + [60707] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2048), 1, + sym_variable_name, + [60717] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4401), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60725] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_declaration_list, + [60735] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4403), 1, + sym_name, + STATE(1721), 1, + sym_namespace_name, + [60745] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60753] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1688), 1, + sym_declaration_list, + [60763] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1081), 1, + sym_compound_statement, + [60773] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym_compound_statement, + [60783] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(940), 1, + sym_compound_statement, + [60793] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(2036), 1, + sym_formal_parameters, + [60803] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4407), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60811] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4409), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60819] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(942), 1, + sym_compound_statement, + [60829] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(454), 1, + sym_declaration_list, + [60839] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(520), 1, + sym_enum_declaration_list, + [60849] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4411), 2, + anon_sym_string, + anon_sym_int, + [60857] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1086), 1, + sym_compound_statement, + [60867] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1550), 1, + sym_formal_parameters, + [60877] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(79), 1, + sym_parenthesized_expression, + [60887] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(944), 1, + sym_compound_statement, + [60897] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, + [60907] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(582), 1, + sym_arguments, + [60917] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2523), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60925] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1668), 1, + sym_declaration_list, + [60935] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1665), 1, + sym_declaration_list, + [60945] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4413), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 1, + anon_sym_SQUOTE, + ACTIONS(4417), 1, + sym_string_value, + [60963] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3827), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + sym__new_line, + ACTIONS(4421), 1, + sym_heredoc_end, + [60981] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4034), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [60989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + sym__new_line, + ACTIONS(4425), 1, + sym_heredoc_end, + [60999] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_declaration_list, + [61009] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4427), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [61017] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + STATE(901), 1, + sym_declaration_list, + [61027] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4430), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61035] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4432), 1, + anon_sym_SEMI, + ACTIONS(4434), 1, + sym__automatic_semicolon, + [61045] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4436), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61053] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4438), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61061] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_LBRACE, + STATE(2010), 1, + sym_enum_declaration_list, + [61071] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61079] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(948), 1, + sym_compound_statement, + [61089] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_declaration_list, + [61099] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1071), 1, + sym_declaration_list, + [61109] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3335), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61117] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4440), 2, + anon_sym_SEMI, + anon_sym_COLON, + [61125] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(949), 1, + sym_compound_statement, + [61135] = 3, + ACTIONS(377), 1, + anon_sym_COLON, + ACTIONS(1506), 1, + sym_comment, + STATE(2458), 1, + sym_colon_block, + [61145] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_LPAREN, + STATE(2267), 1, + sym_parenthesized_expression, + [61155] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4442), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61163] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(60), 1, + sym_parenthesized_expression, + [61173] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(81), 1, + sym_parenthesized_expression, + [61183] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4444), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61191] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4446), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61199] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(951), 1, + sym_compound_statement, + [61209] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4448), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61217] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2383), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61225] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1620), 1, + sym_declaration_list, + [61235] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(1583), 1, + sym_formal_parameters, + [61245] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_declaration_list, + [61255] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_LBRACE, + STATE(2013), 1, + sym_enum_declaration_list, + [61265] = 3, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(953), 1, + sym_compound_statement, + [61275] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_compound_statement, + [61285] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4135), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [61293] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_LBRACE, + STATE(1050), 1, + sym_compound_statement, + [61303] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1631), 1, + sym_declaration_list, + [61313] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2473), 1, + anon_sym_RPAREN, + ACTIONS(4266), 1, + anon_sym_EQ, + [61323] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2301), 1, + sym_variable_name, + [61333] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + STATE(957), 1, + sym_declaration_list, + [61343] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + STATE(958), 1, + sym_declaration_list, + [61353] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2304), 1, + sym_variable_name, + [61363] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym_parenthesized_expression, + [61373] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3949), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [61381] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(1972), 1, + sym_variable_name, + [61391] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3347), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61399] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR, + STATE(2310), 1, + sym_variable_name, + [61409] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4450), 1, + anon_sym_RBRACK, + [61416] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4452), 1, + sym_name, + [61423] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4454), 1, + aux_sym_if_statement_token2, + [61430] = 2, + ACTIONS(855), 1, + anon_sym_SEMI, + ACTIONS(1506), 1, + sym_comment, + [61437] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_EQ, + [61444] = 2, + ACTIONS(849), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61451] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4458), 1, + anon_sym_SQUOTE, + [61458] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2473), 1, + anon_sym_RPAREN, + [61465] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4460), 1, + anon_sym_EQ_GT, + [61472] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_STAR_STAR, + [61479] = 2, + ACTIONS(847), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61486] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4137), 1, + anon_sym_LBRACE, + [61493] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4462), 1, + anon_sym_RPAREN, + [61500] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4464), 1, + sym_heredoc_end, + [61507] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_RBRACK, + [61514] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4468), 1, + anon_sym_EQ_GT, + [61521] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4026), 1, + anon_sym_RBRACE, + [61528] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_EQ_GT, + [61535] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4472), 1, + anon_sym_EQ, + [61542] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2287), 1, + anon_sym_STAR_STAR, + [61549] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4474), 1, + anon_sym_EQ_GT, + [61556] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + [61563] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4478), 1, + anon_sym_RPAREN, + [61570] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4480), 1, + anon_sym_RPAREN, + [61577] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4482), 1, + anon_sym_RPAREN, + [61584] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4484), 1, + sym_name, + [61591] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4486), 1, + sym_integer, + [61598] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3969), 1, + anon_sym_RBRACE, + [61605] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym_RBRACK, + [61612] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4490), 1, + sym_heredoc_end, + [61619] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_BSLASH, + [61626] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4494), 1, + sym_name, + [61633] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_EQ_GT, + [61640] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4498), 1, + anon_sym_EQ_GT, + [61647] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4500), 1, + sym_name, + [61654] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4502), 1, + aux_sym_class_declaration_token1, + [61661] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4504), 1, + sym_name, + [61668] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4506), 1, + sym_name, + [61675] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4508), 1, + sym_heredoc_end, + [61682] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4510), 1, + anon_sym_EQ, + [61689] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4118), 1, + anon_sym_LBRACE, + [61696] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4512), 1, + aux_sym_foreach_statement_token2, + [61703] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4514), 1, + sym_name, + [61710] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4516), 1, + anon_sym_RPAREN, + [61717] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4518), 1, + sym_name, + [61724] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3955), 1, + anon_sym_RPAREN, + [61731] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4520), 1, + anon_sym_DQUOTE2, + [61738] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4522), 1, + anon_sym_SQUOTE2, + [61745] = 2, + ACTIONS(883), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61752] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4524), 1, + sym_name, + [61759] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4526), 1, + anon_sym_RPAREN, + [61766] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4528), 1, + anon_sym_RPAREN, + [61773] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_EQ_GT, + [61780] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4266), 1, + anon_sym_EQ, + [61787] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + [61794] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4534), 1, + anon_sym_BSLASH, + [61801] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4536), 1, + aux_sym_if_statement_token2, + [61808] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3556), 1, + sym_name, + [61815] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2487), 1, + anon_sym_RPAREN, + [61822] = 2, + ACTIONS(857), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61829] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3874), 1, + anon_sym_RBRACK, + [61836] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4538), 1, + anon_sym_RPAREN, + [61843] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4540), 1, + anon_sym_SEMI, + [61850] = 2, + ACTIONS(867), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61857] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4542), 1, + aux_sym_while_statement_token2, + [61864] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4544), 1, + anon_sym_SEMI, + [61871] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4546), 1, + anon_sym_LPAREN, + [61878] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4548), 1, + anon_sym_RPAREN, + [61885] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4550), 1, + anon_sym_EQ, + [61892] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2469), 1, + anon_sym_RPAREN, + [61899] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_STAR_STAR, + [61906] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3936), 1, + anon_sym_RPAREN, + [61913] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4552), 1, + sym_name, + [61920] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4554), 1, + anon_sym_EQ_GT, + [61927] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4556), 1, + aux_sym_if_statement_token2, + [61934] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4558), 1, + aux_sym_if_statement_token2, + [61941] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4560), 1, + anon_sym_EQ_GT, + [61948] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4562), 1, + anon_sym_EQ, + [61955] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4564), 1, + anon_sym_COLON_COLON, + [61962] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4566), 1, + anon_sym_RPAREN, + [61969] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4568), 1, + aux_sym_if_statement_token2, + [61976] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4570), 1, + anon_sym_EQ, + [61983] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4572), 1, + sym_name, + [61990] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4574), 1, + sym_name, + [61997] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4576), 1, + anon_sym_DQUOTE2, + [62004] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4578), 1, + anon_sym_LPAREN, + [62011] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4580), 1, + anon_sym_SQUOTE2, + [62018] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4582), 1, + anon_sym_RPAREN, + [62025] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4584), 1, + anon_sym_RPAREN, + [62032] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4586), 1, + aux_sym_while_statement_token2, + [62039] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_RPAREN, + [62046] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_RPAREN, + [62053] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4590), 1, + sym_name, + [62060] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3926), 1, + anon_sym_RPAREN, + [62067] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4592), 1, + sym_heredoc_end, + [62074] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4594), 1, + anon_sym_RPAREN, + [62081] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4596), 1, + anon_sym_RPAREN, + [62088] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4598), 1, + sym_name, + [62095] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4600), 1, + anon_sym_RPAREN, + [62102] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_BSLASH, + [62109] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4604), 1, + sym_name, + [62116] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3963), 1, + sym_name, + [62123] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4606), 1, + anon_sym_BSLASH, + [62130] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4608), 1, + anon_sym_EQ, + [62137] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4610), 1, + sym_name, + [62144] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4612), 1, + sym_name, + [62151] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4614), 1, + ts_builtin_sym_end, + [62158] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4616), 1, + anon_sym_EQ_GT, + [62165] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4618), 1, + aux_sym__arrow_function_header_token1, + [62172] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3900), 1, + aux_sym_class_declaration_token1, + [62179] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4620), 1, + anon_sym_RPAREN, + [62186] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4622), 1, + sym_name, + [62193] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4624), 1, + sym_name, + [62200] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4626), 1, + aux_sym_class_declaration_token1, + [62207] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4628), 1, + aux_sym_class_declaration_token1, + [62214] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4630), 1, + sym_name, + [62221] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3918), 1, + sym_name, + [62228] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4632), 1, + anon_sym_EQ_GT, + [62235] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4634), 1, + anon_sym_EQ_GT, + [62242] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4636), 1, + anon_sym_COLON_COLON, + [62249] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3894), 1, + aux_sym_class_declaration_token1, + [62256] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4638), 1, + aux_sym_namespace_use_declaration_token3, + [62263] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4640), 1, + anon_sym_BSLASH, + [62270] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4642), 1, + sym_name, + [62277] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4644), 1, + sym_heredoc_start, + [62284] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4646), 1, + sym_heredoc_start, + [62291] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4648), 1, + aux_sym_while_statement_token1, + [62298] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4650), 1, + sym_heredoc_start, + [62305] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4652), 1, + sym_heredoc_start, + [62312] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4654), 1, + aux_sym_class_declaration_token1, + [62319] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_STAR_STAR, + [62326] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3898), 1, + anon_sym_RPAREN, + [62333] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3892), 1, + aux_sym_class_declaration_token1, + [62340] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4656), 1, + anon_sym_BSLASH, + [62347] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4658), 1, + anon_sym_BSLASH, + [62354] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_RPAREN, + [62361] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4662), 1, + sym_name, + [62368] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4664), 1, + anon_sym_SQUOTE, + [62375] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4666), 1, + sym_name, + [62382] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4668), 1, + aux_sym_class_declaration_token1, + [62389] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4670), 1, + anon_sym_BSLASH, + [62396] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4672), 1, + sym_name, + [62403] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym_RPAREN, + [62410] = 2, + ACTIONS(879), 1, + anon_sym_SEMI, + ACTIONS(1506), 1, + sym_comment, + [62417] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4303), 1, + anon_sym_LPAREN, + [62424] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4674), 1, + sym_name, + [62431] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4676), 1, + sym_name, + [62438] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4678), 1, + anon_sym_RPAREN, + [62445] = 2, + ACTIONS(845), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [62452] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4680), 1, + aux_sym_class_declaration_token1, + [62459] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_SEMI, + [62466] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2453), 1, + anon_sym_RPAREN, + [62473] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4684), 1, + sym_name, + [62480] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4686), 1, + sym_name, + [62487] = 2, + ACTIONS(841), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [62494] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4688), 1, + sym_name, + [62501] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4690), 1, + anon_sym_RPAREN, + [62508] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4692), 1, + aux_sym_while_statement_token1, + [62515] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4149), 1, + anon_sym_RPAREN, + [62522] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4694), 1, + anon_sym_RBRACK, + [62529] = 2, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(1506), 1, + sym_comment, + [62536] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4305), 1, + anon_sym_RPAREN, + [62543] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4696), 1, + anon_sym_COLON_COLON, + [62550] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4698), 1, + sym_name, + [62557] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4700), 1, + anon_sym_COLON_COLON, + [62564] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4702), 1, + anon_sym_COLON_COLON, + [62571] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3517), 1, + anon_sym_BSLASH, + [62578] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4704), 1, + anon_sym_EQ, + [62585] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4169), 1, + anon_sym_RPAREN, + [62592] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4706), 1, + anon_sym_BSLASH, + [62599] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4708), 1, + aux_sym_namespace_use_declaration_token3, + [62606] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4181), 1, + anon_sym_RPAREN, + [62613] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4710), 1, + anon_sym_RPAREN, + [62620] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4712), 1, + anon_sym_COLON_COLON, + [62627] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3452), 1, + sym_name, + [62634] = 2, + ACTIONS(875), 1, + anon_sym_SEMI, + ACTIONS(1506), 1, + sym_comment, + [62641] = 2, + ACTIONS(415), 1, + ts_builtin_sym_end, + ACTIONS(1506), 1, + sym_comment, + [62648] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4714), 1, + anon_sym_COLON_COLON, + [62655] = 2, + ACTIONS(861), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [62662] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4716), 1, + anon_sym_SEMI, + [62669] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4718), 1, + anon_sym_EQ, + [62676] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4720), 1, + anon_sym_EQ_GT, + [62683] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_RPAREN, + [62690] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4722), 1, + aux_sym_namespace_use_declaration_token3, + [62697] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4724), 1, + aux_sym__arrow_function_header_token1, + [62704] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3851), 1, + aux_sym_class_declaration_token1, + [62711] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3912), 1, + anon_sym_RBRACK, + [62718] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4726), 1, + anon_sym_BSLASH, + [62725] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4728), 1, + sym_name, + [62732] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4730), 1, + ts_builtin_sym_end, + [62739] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + [62746] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4734), 1, + sym_heredoc_end, + [62753] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4736), 1, + anon_sym_LPAREN, + [62760] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2679), 1, + anon_sym_RPAREN, + [62767] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4738), 1, + sym_heredoc_end, + [62774] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4219), 1, + anon_sym_RPAREN, + [62781] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4740), 1, + anon_sym_LPAREN, + [62788] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4742), 1, + anon_sym_LPAREN, + [62795] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4744), 1, + anon_sym_LPAREN, + [62802] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + [62809] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4748), 1, + anon_sym_LPAREN, + [62816] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4750), 1, + anon_sym_EQ_GT, + [62823] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4752), 1, + anon_sym_COLON_COLON, + [62830] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4754), 1, + anon_sym_LPAREN, + [62837] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4756), 1, + sym_name, + [62844] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4758), 1, + anon_sym_SEMI, + [62851] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4760), 1, + anon_sym_COLON_COLON, + [62858] = 2, + ACTIONS(869), 1, + anon_sym_SEMI, + ACTIONS(1506), 1, + sym_comment, + [62865] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_LPAREN, + [62872] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4764), 1, + anon_sym_LPAREN, + [62879] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4766), 1, + anon_sym_SEMI, + [62886] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4768), 1, + anon_sym_LPAREN, + [62893] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4770), 1, + anon_sym_LPAREN, + [62900] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4772), 1, + anon_sym_SEMI, + [62907] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4774), 1, + sym_name, + [62914] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_LPAREN, + [62921] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4778), 1, + anon_sym_LPAREN, + [62928] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4780), 1, + sym_name, + [62935] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4782), 1, + sym_name, + [62942] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_SEMI, + [62949] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4786), 1, + sym_name, + [62956] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4788), 1, + anon_sym_LPAREN, + [62963] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4790), 1, + aux_sym_foreach_statement_token2, + [62970] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4792), 1, + anon_sym_LPAREN, + [62977] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4794), 1, + anon_sym_LPAREN, + [62984] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4232), 1, + anon_sym_RPAREN, + [62991] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4796), 1, + anon_sym_LPAREN, + [62998] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym_LPAREN, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(568)] = 0, + [SMALL_STATE(569)] = 70, + [SMALL_STATE(570)] = 140, + [SMALL_STATE(571)] = 210, + [SMALL_STATE(572)] = 280, + [SMALL_STATE(573)] = 353, + [SMALL_STATE(574)] = 426, + [SMALL_STATE(575)] = 499, + [SMALL_STATE(576)] = 580, + [SMALL_STATE(577)] = 653, + [SMALL_STATE(578)] = 726, + [SMALL_STATE(579)] = 794, + [SMALL_STATE(580)] = 862, + [SMALL_STATE(581)] = 930, + [SMALL_STATE(582)] = 998, + [SMALL_STATE(583)] = 1066, + [SMALL_STATE(584)] = 1134, + [SMALL_STATE(585)] = 1202, + [SMALL_STATE(586)] = 1270, + [SMALL_STATE(587)] = 1338, + [SMALL_STATE(588)] = 1406, + [SMALL_STATE(589)] = 1474, + [SMALL_STATE(590)] = 1542, + [SMALL_STATE(591)] = 1610, + [SMALL_STATE(592)] = 1685, + [SMALL_STATE(593)] = 1764, + [SMALL_STATE(594)] = 1843, + [SMALL_STATE(595)] = 1921, + [SMALL_STATE(596)] = 1999, + [SMALL_STATE(597)] = 2072, + [SMALL_STATE(598)] = 2149, + [SMALL_STATE(599)] = 2222, + [SMALL_STATE(600)] = 2299, + [SMALL_STATE(601)] = 2376, + [SMALL_STATE(602)] = 2445, + [SMALL_STATE(603)] = 2514, + [SMALL_STATE(604)] = 2583, + [SMALL_STATE(605)] = 2652, + [SMALL_STATE(606)] = 2721, + [SMALL_STATE(607)] = 2804, + [SMALL_STATE(608)] = 2881, + [SMALL_STATE(609)] = 2953, + [SMALL_STATE(610)] = 3031, + [SMALL_STATE(611)] = 3095, + [SMALL_STATE(612)] = 3159, + [SMALL_STATE(613)] = 3223, + [SMALL_STATE(614)] = 3287, + [SMALL_STATE(615)] = 3351, + [SMALL_STATE(616)] = 3415, + [SMALL_STATE(617)] = 3479, + [SMALL_STATE(618)] = 3555, + [SMALL_STATE(619)] = 3631, + [SMALL_STATE(620)] = 3695, + [SMALL_STATE(621)] = 3759, + [SMALL_STATE(622)] = 3823, + [SMALL_STATE(623)] = 3887, + [SMALL_STATE(624)] = 3951, + [SMALL_STATE(625)] = 4015, + [SMALL_STATE(626)] = 4087, + [SMALL_STATE(627)] = 4151, + [SMALL_STATE(628)] = 4215, + [SMALL_STATE(629)] = 4293, + [SMALL_STATE(630)] = 4357, + [SMALL_STATE(631)] = 4435, + [SMALL_STATE(632)] = 4499, + [SMALL_STATE(633)] = 4570, + [SMALL_STATE(634)] = 4641, + [SMALL_STATE(635)] = 4718, + [SMALL_STATE(636)] = 4789, + [SMALL_STATE(637)] = 4860, + [SMALL_STATE(638)] = 4937, + [SMALL_STATE(639)] = 5009, + [SMALL_STATE(640)] = 5081, + [SMALL_STATE(641)] = 5153, + [SMALL_STATE(642)] = 5223, + [SMALL_STATE(643)] = 5293, + [SMALL_STATE(644)] = 5364, + [SMALL_STATE(645)] = 5423, + [SMALL_STATE(646)] = 5478, + [SMALL_STATE(647)] = 5543, + [SMALL_STATE(648)] = 5602, + [SMALL_STATE(649)] = 5667, + [SMALL_STATE(650)] = 5726, + [SMALL_STATE(651)] = 5787, + [SMALL_STATE(652)] = 5850, + [SMALL_STATE(653)] = 5909, + [SMALL_STATE(654)] = 5968, + [SMALL_STATE(655)] = 6065, + [SMALL_STATE(656)] = 6162, + [SMALL_STATE(657)] = 6227, + [SMALL_STATE(658)] = 6292, + [SMALL_STATE(659)] = 6346, + [SMALL_STATE(660)] = 6400, + [SMALL_STATE(661)] = 6454, + [SMALL_STATE(662)] = 6550, + [SMALL_STATE(663)] = 6604, + [SMALL_STATE(664)] = 6662, + [SMALL_STATE(665)] = 6758, + [SMALL_STATE(666)] = 6812, + [SMALL_STATE(667)] = 6866, + [SMALL_STATE(668)] = 6920, + [SMALL_STATE(669)] = 6974, + [SMALL_STATE(670)] = 7028, + [SMALL_STATE(671)] = 7082, + [SMALL_STATE(672)] = 7136, + [SMALL_STATE(673)] = 7190, + [SMALL_STATE(674)] = 7244, + [SMALL_STATE(675)] = 7298, + [SMALL_STATE(676)] = 7352, + [SMALL_STATE(677)] = 7406, + [SMALL_STATE(678)] = 7460, + [SMALL_STATE(679)] = 7514, + [SMALL_STATE(680)] = 7573, + [SMALL_STATE(681)] = 7632, + [SMALL_STATE(682)] = 7687, + [SMALL_STATE(683)] = 7746, + [SMALL_STATE(684)] = 7801, + [SMALL_STATE(685)] = 7856, + [SMALL_STATE(686)] = 7911, + [SMALL_STATE(687)] = 8002, + [SMALL_STATE(688)] = 8057, + [SMALL_STATE(689)] = 8148, + [SMALL_STATE(690)] = 8207, + [SMALL_STATE(691)] = 8304, + [SMALL_STATE(692)] = 8399, + [SMALL_STATE(693)] = 8456, + [SMALL_STATE(694)] = 8551, + [SMALL_STATE(695)] = 8610, + [SMALL_STATE(696)] = 8669, + [SMALL_STATE(697)] = 8728, + [SMALL_STATE(698)] = 8785, + [SMALL_STATE(699)] = 8842, + [SMALL_STATE(700)] = 8939, + [SMALL_STATE(701)] = 8998, + [SMALL_STATE(702)] = 9057, + [SMALL_STATE(703)] = 9114, + [SMALL_STATE(704)] = 9173, + [SMALL_STATE(705)] = 9230, + [SMALL_STATE(706)] = 9287, + [SMALL_STATE(707)] = 9344, + [SMALL_STATE(708)] = 9401, + [SMALL_STATE(709)] = 9458, + [SMALL_STATE(710)] = 9513, + [SMALL_STATE(711)] = 9572, + [SMALL_STATE(712)] = 9629, + [SMALL_STATE(713)] = 9688, + [SMALL_STATE(714)] = 9779, + [SMALL_STATE(715)] = 9836, + [SMALL_STATE(716)] = 9893, + [SMALL_STATE(717)] = 9950, + [SMALL_STATE(718)] = 10002, + [SMALL_STATE(719)] = 10054, + [SMALL_STATE(720)] = 10106, + [SMALL_STATE(721)] = 10158, + [SMALL_STATE(722)] = 10210, + [SMALL_STATE(723)] = 10262, + [SMALL_STATE(724)] = 10314, + [SMALL_STATE(725)] = 10366, + [SMALL_STATE(726)] = 10418, + [SMALL_STATE(727)] = 10470, + [SMALL_STATE(728)] = 10562, + [SMALL_STATE(729)] = 10614, + [SMALL_STATE(730)] = 10708, + [SMALL_STATE(731)] = 10760, + [SMALL_STATE(732)] = 10812, + [SMALL_STATE(733)] = 10864, + [SMALL_STATE(734)] = 10958, + [SMALL_STATE(735)] = 11010, + [SMALL_STATE(736)] = 11062, + [SMALL_STATE(737)] = 11114, + [SMALL_STATE(738)] = 11166, + [SMALL_STATE(739)] = 11218, + [SMALL_STATE(740)] = 11272, + [SMALL_STATE(741)] = 11366, + [SMALL_STATE(742)] = 11418, + [SMALL_STATE(743)] = 11470, + [SMALL_STATE(744)] = 11522, + [SMALL_STATE(745)] = 11574, + [SMALL_STATE(746)] = 11626, + [SMALL_STATE(747)] = 11678, + [SMALL_STATE(748)] = 11730, + [SMALL_STATE(749)] = 11782, + [SMALL_STATE(750)] = 11834, + [SMALL_STATE(751)] = 11886, + [SMALL_STATE(752)] = 11938, + [SMALL_STATE(753)] = 11990, + [SMALL_STATE(754)] = 12042, + [SMALL_STATE(755)] = 12094, + [SMALL_STATE(756)] = 12148, + [SMALL_STATE(757)] = 12200, + [SMALL_STATE(758)] = 12252, + [SMALL_STATE(759)] = 12304, + [SMALL_STATE(760)] = 12356, + [SMALL_STATE(761)] = 12450, + [SMALL_STATE(762)] = 12502, + [SMALL_STATE(763)] = 12555, + [SMALL_STATE(764)] = 12606, + [SMALL_STATE(765)] = 12661, + [SMALL_STATE(766)] = 12712, + [SMALL_STATE(767)] = 12765, + [SMALL_STATE(768)] = 12820, + [SMALL_STATE(769)] = 12875, + [SMALL_STATE(770)] = 12966, + [SMALL_STATE(771)] = 13021, + [SMALL_STATE(772)] = 13076, + [SMALL_STATE(773)] = 13131, + [SMALL_STATE(774)] = 13184, + [SMALL_STATE(775)] = 13245, + [SMALL_STATE(776)] = 13302, + [SMALL_STATE(777)] = 13355, + [SMALL_STATE(778)] = 13414, + [SMALL_STATE(779)] = 13475, + [SMALL_STATE(780)] = 13536, + [SMALL_STATE(781)] = 13597, + [SMALL_STATE(782)] = 13650, + [SMALL_STATE(783)] = 13700, + [SMALL_STATE(784)] = 13750, + [SMALL_STATE(785)] = 13800, + [SMALL_STATE(786)] = 13850, + [SMALL_STATE(787)] = 13900, + [SMALL_STATE(788)] = 13950, + [SMALL_STATE(789)] = 14000, + [SMALL_STATE(790)] = 14050, + [SMALL_STATE(791)] = 14100, + [SMALL_STATE(792)] = 14150, + [SMALL_STATE(793)] = 14200, + [SMALL_STATE(794)] = 14250, + [SMALL_STATE(795)] = 14300, + [SMALL_STATE(796)] = 14362, + [SMALL_STATE(797)] = 14424, + [SMALL_STATE(798)] = 14474, + [SMALL_STATE(799)] = 14524, + [SMALL_STATE(800)] = 14574, + [SMALL_STATE(801)] = 14636, + [SMALL_STATE(802)] = 14686, + [SMALL_STATE(803)] = 14736, + [SMALL_STATE(804)] = 14789, + [SMALL_STATE(805)] = 14872, + [SMALL_STATE(806)] = 14955, + [SMALL_STATE(807)] = 15008, + [SMALL_STATE(808)] = 15091, + [SMALL_STATE(809)] = 15144, + [SMALL_STATE(810)] = 15199, + [SMALL_STATE(811)] = 15252, + [SMALL_STATE(812)] = 15335, + [SMALL_STATE(813)] = 15388, + [SMALL_STATE(814)] = 15441, + [SMALL_STATE(815)] = 15494, + [SMALL_STATE(816)] = 15577, + [SMALL_STATE(817)] = 15660, + [SMALL_STATE(818)] = 15713, + [SMALL_STATE(819)] = 15768, + [SMALL_STATE(820)] = 15823, + [SMALL_STATE(821)] = 15906, + [SMALL_STATE(822)] = 15961, + [SMALL_STATE(823)] = 16016, + [SMALL_STATE(824)] = 16065, + [SMALL_STATE(825)] = 16114, + [SMALL_STATE(826)] = 16197, + [SMALL_STATE(827)] = 16252, + [SMALL_STATE(828)] = 16335, + [SMALL_STATE(829)] = 16390, + [SMALL_STATE(830)] = 16439, + [SMALL_STATE(831)] = 16490, + [SMALL_STATE(832)] = 16541, + [SMALL_STATE(833)] = 16624, + [SMALL_STATE(834)] = 16675, + [SMALL_STATE(835)] = 16758, + [SMALL_STATE(836)] = 16809, + [SMALL_STATE(837)] = 16892, + [SMALL_STATE(838)] = 16947, + [SMALL_STATE(839)] = 17002, + [SMALL_STATE(840)] = 17057, + [SMALL_STATE(841)] = 17110, + [SMALL_STATE(842)] = 17163, + [SMALL_STATE(843)] = 17212, + [SMALL_STATE(844)] = 17265, + [SMALL_STATE(845)] = 17348, + [SMALL_STATE(846)] = 17401, + [SMALL_STATE(847)] = 17452, + [SMALL_STATE(848)] = 17535, + [SMALL_STATE(849)] = 17588, + [SMALL_STATE(850)] = 17639, + [SMALL_STATE(851)] = 17690, + [SMALL_STATE(852)] = 17773, + [SMALL_STATE(853)] = 17828, + [SMALL_STATE(854)] = 17883, + [SMALL_STATE(855)] = 17931, + [SMALL_STATE(856)] = 17979, + [SMALL_STATE(857)] = 18027, + [SMALL_STATE(858)] = 18077, + [SMALL_STATE(859)] = 18125, + [SMALL_STATE(860)] = 18173, + [SMALL_STATE(861)] = 18221, + [SMALL_STATE(862)] = 18269, + [SMALL_STATE(863)] = 18317, + [SMALL_STATE(864)] = 18365, + [SMALL_STATE(865)] = 18413, + [SMALL_STATE(866)] = 18461, + [SMALL_STATE(867)] = 18509, + [SMALL_STATE(868)] = 18557, + [SMALL_STATE(869)] = 18605, + [SMALL_STATE(870)] = 18653, + [SMALL_STATE(871)] = 18703, + [SMALL_STATE(872)] = 18751, + [SMALL_STATE(873)] = 18799, + [SMALL_STATE(874)] = 18847, + [SMALL_STATE(875)] = 18895, + [SMALL_STATE(876)] = 18943, + [SMALL_STATE(877)] = 18991, + [SMALL_STATE(878)] = 19039, + [SMALL_STATE(879)] = 19087, + [SMALL_STATE(880)] = 19139, + [SMALL_STATE(881)] = 19187, + [SMALL_STATE(882)] = 19235, + [SMALL_STATE(883)] = 19283, + [SMALL_STATE(884)] = 19331, + [SMALL_STATE(885)] = 19379, + [SMALL_STATE(886)] = 19427, + [SMALL_STATE(887)] = 19475, + [SMALL_STATE(888)] = 19525, + [SMALL_STATE(889)] = 19573, + [SMALL_STATE(890)] = 19621, + [SMALL_STATE(891)] = 19669, + [SMALL_STATE(892)] = 19717, + [SMALL_STATE(893)] = 19765, + [SMALL_STATE(894)] = 19813, + [SMALL_STATE(895)] = 19861, + [SMALL_STATE(896)] = 19909, + [SMALL_STATE(897)] = 19958, + [SMALL_STATE(898)] = 20007, + [SMALL_STATE(899)] = 20056, + [SMALL_STATE(900)] = 20105, + [SMALL_STATE(901)] = 20154, + [SMALL_STATE(902)] = 20200, + [SMALL_STATE(903)] = 20246, + [SMALL_STATE(904)] = 20292, + [SMALL_STATE(905)] = 20338, + [SMALL_STATE(906)] = 20384, + [SMALL_STATE(907)] = 20430, + [SMALL_STATE(908)] = 20476, + [SMALL_STATE(909)] = 20522, + [SMALL_STATE(910)] = 20570, + [SMALL_STATE(911)] = 20616, + [SMALL_STATE(912)] = 20662, + [SMALL_STATE(913)] = 20708, + [SMALL_STATE(914)] = 20754, + [SMALL_STATE(915)] = 20800, + [SMALL_STATE(916)] = 20846, + [SMALL_STATE(917)] = 20892, + [SMALL_STATE(918)] = 20938, + [SMALL_STATE(919)] = 20984, + [SMALL_STATE(920)] = 21030, + [SMALL_STATE(921)] = 21076, + [SMALL_STATE(922)] = 21122, + [SMALL_STATE(923)] = 21168, + [SMALL_STATE(924)] = 21214, + [SMALL_STATE(925)] = 21260, + [SMALL_STATE(926)] = 21306, + [SMALL_STATE(927)] = 21352, + [SMALL_STATE(928)] = 21398, + [SMALL_STATE(929)] = 21444, + [SMALL_STATE(930)] = 21490, + [SMALL_STATE(931)] = 21536, + [SMALL_STATE(932)] = 21582, + [SMALL_STATE(933)] = 21628, + [SMALL_STATE(934)] = 21674, + [SMALL_STATE(935)] = 21720, + [SMALL_STATE(936)] = 21766, + [SMALL_STATE(937)] = 21812, + [SMALL_STATE(938)] = 21858, + [SMALL_STATE(939)] = 21904, + [SMALL_STATE(940)] = 21950, + [SMALL_STATE(941)] = 21996, + [SMALL_STATE(942)] = 22042, + [SMALL_STATE(943)] = 22088, + [SMALL_STATE(944)] = 22134, + [SMALL_STATE(945)] = 22180, + [SMALL_STATE(946)] = 22226, + [SMALL_STATE(947)] = 22272, + [SMALL_STATE(948)] = 22318, + [SMALL_STATE(949)] = 22364, + [SMALL_STATE(950)] = 22410, + [SMALL_STATE(951)] = 22456, + [SMALL_STATE(952)] = 22502, + [SMALL_STATE(953)] = 22548, + [SMALL_STATE(954)] = 22594, + [SMALL_STATE(955)] = 22640, + [SMALL_STATE(956)] = 22686, + [SMALL_STATE(957)] = 22732, + [SMALL_STATE(958)] = 22778, + [SMALL_STATE(959)] = 22824, + [SMALL_STATE(960)] = 22870, + [SMALL_STATE(961)] = 22916, + [SMALL_STATE(962)] = 22962, + [SMALL_STATE(963)] = 23008, + [SMALL_STATE(964)] = 23054, + [SMALL_STATE(965)] = 23100, + [SMALL_STATE(966)] = 23145, + [SMALL_STATE(967)] = 23190, + [SMALL_STATE(968)] = 23272, + [SMALL_STATE(969)] = 23348, + [SMALL_STATE(970)] = 23422, + [SMALL_STATE(971)] = 23502, + [SMALL_STATE(972)] = 23582, + [SMALL_STATE(973)] = 23628, + [SMALL_STATE(974)] = 23674, + [SMALL_STATE(975)] = 23754, + [SMALL_STATE(976)] = 23834, + [SMALL_STATE(977)] = 23908, + [SMALL_STATE(978)] = 23988, + [SMALL_STATE(979)] = 24062, + [SMALL_STATE(980)] = 24136, + [SMALL_STATE(981)] = 24216, + [SMALL_STATE(982)] = 24268, + [SMALL_STATE(983)] = 24318, + [SMALL_STATE(984)] = 24372, + [SMALL_STATE(985)] = 24452, + [SMALL_STATE(986)] = 24516, + [SMALL_STATE(987)] = 24584, + [SMALL_STATE(988)] = 24654, + [SMALL_STATE(989)] = 24730, + [SMALL_STATE(990)] = 24808, + [SMALL_STATE(991)] = 24882, + [SMALL_STATE(992)] = 24956, + [SMALL_STATE(993)] = 25004, + [SMALL_STATE(994)] = 25070, + [SMALL_STATE(995)] = 25132, + [SMALL_STATE(996)] = 25212, + [SMALL_STATE(997)] = 25258, + [SMALL_STATE(998)] = 25338, + [SMALL_STATE(999)] = 25418, + [SMALL_STATE(1000)] = 25492, + [SMALL_STATE(1001)] = 25550, + [SMALL_STATE(1002)] = 25597, + [SMALL_STATE(1003)] = 25676, + [SMALL_STATE(1004)] = 25755, + [SMALL_STATE(1005)] = 25822, + [SMALL_STATE(1006)] = 25901, + [SMALL_STATE(1007)] = 25982, + [SMALL_STATE(1008)] = 26045, + [SMALL_STATE(1009)] = 26124, + [SMALL_STATE(1010)] = 26203, + [SMALL_STATE(1011)] = 26256, + [SMALL_STATE(1012)] = 26301, + [SMALL_STATE(1013)] = 26378, + [SMALL_STATE(1014)] = 26447, + [SMALL_STATE(1015)] = 26520, + [SMALL_STATE(1016)] = 26599, + [SMALL_STATE(1017)] = 26674, + [SMALL_STATE(1018)] = 26753, + [SMALL_STATE(1019)] = 26818, + [SMALL_STATE(1020)] = 26875, + [SMALL_STATE(1021)] = 26924, + [SMALL_STATE(1022)] = 26975, + [SMALL_STATE(1023)] = 27048, + [SMALL_STATE(1024)] = 27109, + [SMALL_STATE(1025)] = 27182, + [SMALL_STATE(1026)] = 27227, + [SMALL_STATE(1027)] = 27300, + [SMALL_STATE(1028)] = 27379, + [SMALL_STATE(1029)] = 27424, + [SMALL_STATE(1030)] = 27503, + [SMALL_STATE(1031)] = 27576, + [SMALL_STATE(1032)] = 27649, + [SMALL_STATE(1033)] = 27722, + [SMALL_STATE(1034)] = 27801, + [SMALL_STATE(1035)] = 27843, + [SMALL_STATE(1036)] = 27885, + [SMALL_STATE(1037)] = 27927, + [SMALL_STATE(1038)] = 27999, + [SMALL_STATE(1039)] = 28071, + [SMALL_STATE(1040)] = 28113, + [SMALL_STATE(1041)] = 28155, + [SMALL_STATE(1042)] = 28227, + [SMALL_STATE(1043)] = 28269, + [SMALL_STATE(1044)] = 28313, + [SMALL_STATE(1045)] = 28355, + [SMALL_STATE(1046)] = 28397, + [SMALL_STATE(1047)] = 28441, + [SMALL_STATE(1048)] = 28483, + [SMALL_STATE(1049)] = 28525, + [SMALL_STATE(1050)] = 28567, + [SMALL_STATE(1051)] = 28609, + [SMALL_STATE(1052)] = 28659, + [SMALL_STATE(1053)] = 28701, + [SMALL_STATE(1054)] = 28743, + [SMALL_STATE(1055)] = 28785, + [SMALL_STATE(1056)] = 28827, + [SMALL_STATE(1057)] = 28875, + [SMALL_STATE(1058)] = 28927, + [SMALL_STATE(1059)] = 28969, + [SMALL_STATE(1060)] = 29011, + [SMALL_STATE(1061)] = 29053, + [SMALL_STATE(1062)] = 29109, + [SMALL_STATE(1063)] = 29151, + [SMALL_STATE(1064)] = 29195, + [SMALL_STATE(1065)] = 29237, + [SMALL_STATE(1066)] = 29279, + [SMALL_STATE(1067)] = 29321, + [SMALL_STATE(1068)] = 29363, + [SMALL_STATE(1069)] = 29441, + [SMALL_STATE(1070)] = 29497, + [SMALL_STATE(1071)] = 29539, + [SMALL_STATE(1072)] = 29581, + [SMALL_STATE(1073)] = 29623, + [SMALL_STATE(1074)] = 29689, + [SMALL_STATE(1075)] = 29757, + [SMALL_STATE(1076)] = 29835, + [SMALL_STATE(1077)] = 29877, + [SMALL_STATE(1078)] = 29919, + [SMALL_STATE(1079)] = 29961, + [SMALL_STATE(1080)] = 30035, + [SMALL_STATE(1081)] = 30077, + [SMALL_STATE(1082)] = 30119, + [SMALL_STATE(1083)] = 30195, + [SMALL_STATE(1084)] = 30237, + [SMALL_STATE(1085)] = 30315, + [SMALL_STATE(1086)] = 30357, + [SMALL_STATE(1087)] = 30399, + [SMALL_STATE(1088)] = 30441, + [SMALL_STATE(1089)] = 30483, + [SMALL_STATE(1090)] = 30525, + [SMALL_STATE(1091)] = 30567, + [SMALL_STATE(1092)] = 30639, + [SMALL_STATE(1093)] = 30711, + [SMALL_STATE(1094)] = 30753, + [SMALL_STATE(1095)] = 30799, + [SMALL_STATE(1096)] = 30863, + [SMALL_STATE(1097)] = 30905, + [SMALL_STATE(1098)] = 30947, + [SMALL_STATE(1099)] = 30989, + [SMALL_STATE(1100)] = 31031, + [SMALL_STATE(1101)] = 31109, + [SMALL_STATE(1102)] = 31151, + [SMALL_STATE(1103)] = 31193, + [SMALL_STATE(1104)] = 31235, + [SMALL_STATE(1105)] = 31277, + [SMALL_STATE(1106)] = 31357, + [SMALL_STATE(1107)] = 31399, + [SMALL_STATE(1108)] = 31441, + [SMALL_STATE(1109)] = 31501, + [SMALL_STATE(1110)] = 31579, + [SMALL_STATE(1111)] = 31657, + [SMALL_STATE(1112)] = 31699, + [SMALL_STATE(1113)] = 31741, + [SMALL_STATE(1114)] = 31819, + [SMALL_STATE(1115)] = 31863, + [SMALL_STATE(1116)] = 31905, + [SMALL_STATE(1117)] = 31947, + [SMALL_STATE(1118)] = 32025, + [SMALL_STATE(1119)] = 32103, + [SMALL_STATE(1120)] = 32145, + [SMALL_STATE(1121)] = 32187, + [SMALL_STATE(1122)] = 32265, + [SMALL_STATE(1123)] = 32337, + [SMALL_STATE(1124)] = 32379, + [SMALL_STATE(1125)] = 32421, + [SMALL_STATE(1126)] = 32483, + [SMALL_STATE(1127)] = 32525, + [SMALL_STATE(1128)] = 32567, + [SMALL_STATE(1129)] = 32639, + [SMALL_STATE(1130)] = 32681, + [SMALL_STATE(1131)] = 32723, + [SMALL_STATE(1132)] = 32765, + [SMALL_STATE(1133)] = 32807, + [SMALL_STATE(1134)] = 32849, + [SMALL_STATE(1135)] = 32926, + [SMALL_STATE(1136)] = 32987, + [SMALL_STATE(1137)] = 33058, + [SMALL_STATE(1138)] = 33103, + [SMALL_STATE(1139)] = 33174, + [SMALL_STATE(1140)] = 33251, + [SMALL_STATE(1141)] = 33322, + [SMALL_STATE(1142)] = 33385, + [SMALL_STATE(1143)] = 33462, + [SMALL_STATE(1144)] = 33539, + [SMALL_STATE(1145)] = 33610, + [SMALL_STATE(1146)] = 33681, + [SMALL_STATE(1147)] = 33752, + [SMALL_STATE(1148)] = 33801, + [SMALL_STATE(1149)] = 33848, + [SMALL_STATE(1150)] = 33899, + [SMALL_STATE(1151)] = 33954, + [SMALL_STATE(1152)] = 34031, + [SMALL_STATE(1153)] = 34098, + [SMALL_STATE(1154)] = 34173, + [SMALL_STATE(1155)] = 34216, + [SMALL_STATE(1156)] = 34287, + [SMALL_STATE(1157)] = 34352, + [SMALL_STATE(1158)] = 34395, + [SMALL_STATE(1159)] = 34468, + [SMALL_STATE(1160)] = 34511, + [SMALL_STATE(1161)] = 34570, + [SMALL_STATE(1162)] = 34647, + [SMALL_STATE(1163)] = 34726, + [SMALL_STATE(1164)] = 34803, + [SMALL_STATE(1165)] = 34880, + [SMALL_STATE(1166)] = 34957, + [SMALL_STATE(1167)] = 35034, + [SMALL_STATE(1168)] = 35109, + [SMALL_STATE(1169)] = 35184, + [SMALL_STATE(1170)] = 35261, + [SMALL_STATE(1171)] = 35336, + [SMALL_STATE(1172)] = 35413, + [SMALL_STATE(1173)] = 35490, + [SMALL_STATE(1174)] = 35565, + [SMALL_STATE(1175)] = 35640, + [SMALL_STATE(1176)] = 35715, + [SMALL_STATE(1177)] = 35790, + [SMALL_STATE(1178)] = 35869, + [SMALL_STATE(1179)] = 35934, + [SMALL_STATE(1180)] = 36009, + [SMALL_STATE(1181)] = 36086, + [SMALL_STATE(1182)] = 36163, + [SMALL_STATE(1183)] = 36238, + [SMALL_STATE(1184)] = 36313, + [SMALL_STATE(1185)] = 36378, + [SMALL_STATE(1186)] = 36453, + [SMALL_STATE(1187)] = 36528, + [SMALL_STATE(1188)] = 36602, + [SMALL_STATE(1189)] = 36678, + [SMALL_STATE(1190)] = 36752, + [SMALL_STATE(1191)] = 36796, + [SMALL_STATE(1192)] = 36840, + [SMALL_STATE(1193)] = 36914, + [SMALL_STATE(1194)] = 36988, + [SMALL_STATE(1195)] = 37062, + [SMALL_STATE(1196)] = 37138, + [SMALL_STATE(1197)] = 37212, + [SMALL_STATE(1198)] = 37288, + [SMALL_STATE(1199)] = 37362, + [SMALL_STATE(1200)] = 37438, + [SMALL_STATE(1201)] = 37512, + [SMALL_STATE(1202)] = 37586, + [SMALL_STATE(1203)] = 37660, + [SMALL_STATE(1204)] = 37734, + [SMALL_STATE(1205)] = 37810, + [SMALL_STATE(1206)] = 37884, + [SMALL_STATE(1207)] = 37958, + [SMALL_STATE(1208)] = 38032, + [SMALL_STATE(1209)] = 38108, + [SMALL_STATE(1210)] = 38182, + [SMALL_STATE(1211)] = 38256, + [SMALL_STATE(1212)] = 38330, + [SMALL_STATE(1213)] = 38404, + [SMALL_STATE(1214)] = 38478, + [SMALL_STATE(1215)] = 38552, + [SMALL_STATE(1216)] = 38626, + [SMALL_STATE(1217)] = 38700, + [SMALL_STATE(1218)] = 38774, + [SMALL_STATE(1219)] = 38848, + [SMALL_STATE(1220)] = 38922, + [SMALL_STATE(1221)] = 38996, + [SMALL_STATE(1222)] = 39070, + [SMALL_STATE(1223)] = 39144, + [SMALL_STATE(1224)] = 39218, + [SMALL_STATE(1225)] = 39292, + [SMALL_STATE(1226)] = 39366, + [SMALL_STATE(1227)] = 39440, + [SMALL_STATE(1228)] = 39516, + [SMALL_STATE(1229)] = 39592, + [SMALL_STATE(1230)] = 39665, + [SMALL_STATE(1231)] = 39738, + [SMALL_STATE(1232)] = 39811, + [SMALL_STATE(1233)] = 39884, + [SMALL_STATE(1234)] = 39957, + [SMALL_STATE(1235)] = 40030, + [SMALL_STATE(1236)] = 40103, + [SMALL_STATE(1237)] = 40176, + [SMALL_STATE(1238)] = 40249, + [SMALL_STATE(1239)] = 40322, + [SMALL_STATE(1240)] = 40395, + [SMALL_STATE(1241)] = 40460, + [SMALL_STATE(1242)] = 40533, + [SMALL_STATE(1243)] = 40606, + [SMALL_STATE(1244)] = 40679, + [SMALL_STATE(1245)] = 40752, + [SMALL_STATE(1246)] = 40817, + [SMALL_STATE(1247)] = 40882, + [SMALL_STATE(1248)] = 40955, + [SMALL_STATE(1249)] = 41028, + [SMALL_STATE(1250)] = 41101, + [SMALL_STATE(1251)] = 41160, + [SMALL_STATE(1252)] = 41233, + [SMALL_STATE(1253)] = 41306, + [SMALL_STATE(1254)] = 41379, + [SMALL_STATE(1255)] = 41452, + [SMALL_STATE(1256)] = 41525, + [SMALL_STATE(1257)] = 41562, + [SMALL_STATE(1258)] = 41627, + [SMALL_STATE(1259)] = 41700, + [SMALL_STATE(1260)] = 41773, + [SMALL_STATE(1261)] = 41846, + [SMALL_STATE(1262)] = 41919, + [SMALL_STATE(1263)] = 41992, + [SMALL_STATE(1264)] = 42065, + [SMALL_STATE(1265)] = 42138, + [SMALL_STATE(1266)] = 42211, + [SMALL_STATE(1267)] = 42284, + [SMALL_STATE(1268)] = 42343, + [SMALL_STATE(1269)] = 42416, + [SMALL_STATE(1270)] = 42489, + [SMALL_STATE(1271)] = 42562, + [SMALL_STATE(1272)] = 42635, + [SMALL_STATE(1273)] = 42708, + [SMALL_STATE(1274)] = 42781, + [SMALL_STATE(1275)] = 42854, + [SMALL_STATE(1276)] = 42927, + [SMALL_STATE(1277)] = 43000, + [SMALL_STATE(1278)] = 43073, + [SMALL_STATE(1279)] = 43146, + [SMALL_STATE(1280)] = 43219, + [SMALL_STATE(1281)] = 43292, + [SMALL_STATE(1282)] = 43365, + [SMALL_STATE(1283)] = 43438, + [SMALL_STATE(1284)] = 43511, + [SMALL_STATE(1285)] = 43584, + [SMALL_STATE(1286)] = 43657, + [SMALL_STATE(1287)] = 43730, + [SMALL_STATE(1288)] = 43803, + [SMALL_STATE(1289)] = 43876, + [SMALL_STATE(1290)] = 43949, + [SMALL_STATE(1291)] = 44022, + [SMALL_STATE(1292)] = 44095, + [SMALL_STATE(1293)] = 44168, + [SMALL_STATE(1294)] = 44241, + [SMALL_STATE(1295)] = 44314, + [SMALL_STATE(1296)] = 44379, + [SMALL_STATE(1297)] = 44452, + [SMALL_STATE(1298)] = 44525, + [SMALL_STATE(1299)] = 44598, + [SMALL_STATE(1300)] = 44671, + [SMALL_STATE(1301)] = 44744, + [SMALL_STATE(1302)] = 44817, + [SMALL_STATE(1303)] = 44873, + [SMALL_STATE(1304)] = 44909, + [SMALL_STATE(1305)] = 44945, + [SMALL_STATE(1306)] = 44983, + [SMALL_STATE(1307)] = 45039, + [SMALL_STATE(1308)] = 45074, + [SMALL_STATE(1309)] = 45109, + [SMALL_STATE(1310)] = 45147, + [SMALL_STATE(1311)] = 45185, + [SMALL_STATE(1312)] = 45217, + [SMALL_STATE(1313)] = 45249, + [SMALL_STATE(1314)] = 45295, + [SMALL_STATE(1315)] = 45327, + [SMALL_STATE(1316)] = 45373, + [SMALL_STATE(1317)] = 45419, + [SMALL_STATE(1318)] = 45465, + [SMALL_STATE(1319)] = 45511, + [SMALL_STATE(1320)] = 45557, + [SMALL_STATE(1321)] = 45598, + [SMALL_STATE(1322)] = 45639, + [SMALL_STATE(1323)] = 45680, + [SMALL_STATE(1324)] = 45708, + [SMALL_STATE(1325)] = 45735, + [SMALL_STATE(1326)] = 45784, + [SMALL_STATE(1327)] = 45826, + [SMALL_STATE(1328)] = 45870, + [SMALL_STATE(1329)] = 45914, + [SMALL_STATE(1330)] = 45941, + [SMALL_STATE(1331)] = 45982, + [SMALL_STATE(1332)] = 46023, + [SMALL_STATE(1333)] = 46062, + [SMALL_STATE(1334)] = 46103, + [SMALL_STATE(1335)] = 46144, + [SMALL_STATE(1336)] = 46171, + [SMALL_STATE(1337)] = 46210, + [SMALL_STATE(1338)] = 46246, + [SMALL_STATE(1339)] = 46270, + [SMALL_STATE(1340)] = 46291, + [SMALL_STATE(1341)] = 46312, + [SMALL_STATE(1342)] = 46333, + [SMALL_STATE(1343)] = 46368, + [SMALL_STATE(1344)] = 46388, + [SMALL_STATE(1345)] = 46408, + [SMALL_STATE(1346)] = 46428, + [SMALL_STATE(1347)] = 46448, + [SMALL_STATE(1348)] = 46484, + [SMALL_STATE(1349)] = 46504, + [SMALL_STATE(1350)] = 46540, + [SMALL_STATE(1351)] = 46560, + [SMALL_STATE(1352)] = 46580, + [SMALL_STATE(1353)] = 46616, + [SMALL_STATE(1354)] = 46636, + [SMALL_STATE(1355)] = 46656, + [SMALL_STATE(1356)] = 46676, + [SMALL_STATE(1357)] = 46696, + [SMALL_STATE(1358)] = 46716, + [SMALL_STATE(1359)] = 46736, + [SMALL_STATE(1360)] = 46756, + [SMALL_STATE(1361)] = 46776, + [SMALL_STATE(1362)] = 46796, + [SMALL_STATE(1363)] = 46832, + [SMALL_STATE(1364)] = 46862, + [SMALL_STATE(1365)] = 46882, + [SMALL_STATE(1366)] = 46918, + [SMALL_STATE(1367)] = 46938, + [SMALL_STATE(1368)] = 46979, + [SMALL_STATE(1369)] = 47014, + [SMALL_STATE(1370)] = 47033, + [SMALL_STATE(1371)] = 47052, + [SMALL_STATE(1372)] = 47085, + [SMALL_STATE(1373)] = 47104, + [SMALL_STATE(1374)] = 47123, + [SMALL_STATE(1375)] = 47142, + [SMALL_STATE(1376)] = 47169, + [SMALL_STATE(1377)] = 47210, + [SMALL_STATE(1378)] = 47229, + [SMALL_STATE(1379)] = 47248, + [SMALL_STATE(1380)] = 47267, + [SMALL_STATE(1381)] = 47286, + [SMALL_STATE(1382)] = 47305, + [SMALL_STATE(1383)] = 47324, + [SMALL_STATE(1384)] = 47357, + [SMALL_STATE(1385)] = 47390, + [SMALL_STATE(1386)] = 47425, + [SMALL_STATE(1387)] = 47444, + [SMALL_STATE(1388)] = 47463, + [SMALL_STATE(1389)] = 47496, + [SMALL_STATE(1390)] = 47515, + [SMALL_STATE(1391)] = 47534, + [SMALL_STATE(1392)] = 47553, + [SMALL_STATE(1393)] = 47572, + [SMALL_STATE(1394)] = 47605, + [SMALL_STATE(1395)] = 47624, + [SMALL_STATE(1396)] = 47643, + [SMALL_STATE(1397)] = 47664, + [SMALL_STATE(1398)] = 47683, + [SMALL_STATE(1399)] = 47717, + [SMALL_STATE(1400)] = 47751, + [SMALL_STATE(1401)] = 47785, + [SMALL_STATE(1402)] = 47819, + [SMALL_STATE(1403)] = 47850, + [SMALL_STATE(1404)] = 47879, + [SMALL_STATE(1405)] = 47910, + [SMALL_STATE(1406)] = 47941, + [SMALL_STATE(1407)] = 47972, + [SMALL_STATE(1408)] = 48003, + [SMALL_STATE(1409)] = 48034, + [SMALL_STATE(1410)] = 48063, + [SMALL_STATE(1411)] = 48092, + [SMALL_STATE(1412)] = 48110, + [SMALL_STATE(1413)] = 48136, + [SMALL_STATE(1414)] = 48164, + [SMALL_STATE(1415)] = 48182, + [SMALL_STATE(1416)] = 48200, + [SMALL_STATE(1417)] = 48228, + [SMALL_STATE(1418)] = 48246, + [SMALL_STATE(1419)] = 48264, + [SMALL_STATE(1420)] = 48282, + [SMALL_STATE(1421)] = 48300, + [SMALL_STATE(1422)] = 48326, + [SMALL_STATE(1423)] = 48352, + [SMALL_STATE(1424)] = 48370, + [SMALL_STATE(1425)] = 48398, + [SMALL_STATE(1426)] = 48420, + [SMALL_STATE(1427)] = 48438, + [SMALL_STATE(1428)] = 48460, + [SMALL_STATE(1429)] = 48482, + [SMALL_STATE(1430)] = 48506, + [SMALL_STATE(1431)] = 48534, + [SMALL_STATE(1432)] = 48562, + [SMALL_STATE(1433)] = 48580, + [SMALL_STATE(1434)] = 48601, + [SMALL_STATE(1435)] = 48622, + [SMALL_STATE(1436)] = 48637, + [SMALL_STATE(1437)] = 48660, + [SMALL_STATE(1438)] = 48683, + [SMALL_STATE(1439)] = 48704, + [SMALL_STATE(1440)] = 48727, + [SMALL_STATE(1441)] = 48752, + [SMALL_STATE(1442)] = 48773, + [SMALL_STATE(1443)] = 48794, + [SMALL_STATE(1444)] = 48817, + [SMALL_STATE(1445)] = 48840, + [SMALL_STATE(1446)] = 48865, + [SMALL_STATE(1447)] = 48890, + [SMALL_STATE(1448)] = 48913, + [SMALL_STATE(1449)] = 48928, + [SMALL_STATE(1450)] = 48951, + [SMALL_STATE(1451)] = 48974, + [SMALL_STATE(1452)] = 48997, + [SMALL_STATE(1453)] = 49020, + [SMALL_STATE(1454)] = 49045, + [SMALL_STATE(1455)] = 49060, + [SMALL_STATE(1456)] = 49075, + [SMALL_STATE(1457)] = 49100, + [SMALL_STATE(1458)] = 49123, + [SMALL_STATE(1459)] = 49146, + [SMALL_STATE(1460)] = 49169, + [SMALL_STATE(1461)] = 49192, + [SMALL_STATE(1462)] = 49209, + [SMALL_STATE(1463)] = 49232, + [SMALL_STATE(1464)] = 49255, + [SMALL_STATE(1465)] = 49280, + [SMALL_STATE(1466)] = 49305, + [SMALL_STATE(1467)] = 49328, + [SMALL_STATE(1468)] = 49347, + [SMALL_STATE(1469)] = 49368, + [SMALL_STATE(1470)] = 49391, + [SMALL_STATE(1471)] = 49406, + [SMALL_STATE(1472)] = 49429, + [SMALL_STATE(1473)] = 49454, + [SMALL_STATE(1474)] = 49481, + [SMALL_STATE(1475)] = 49506, + [SMALL_STATE(1476)] = 49529, + [SMALL_STATE(1477)] = 49552, + [SMALL_STATE(1478)] = 49575, + [SMALL_STATE(1479)] = 49598, + [SMALL_STATE(1480)] = 49621, + [SMALL_STATE(1481)] = 49646, + [SMALL_STATE(1482)] = 49671, + [SMALL_STATE(1483)] = 49694, + [SMALL_STATE(1484)] = 49717, + [SMALL_STATE(1485)] = 49744, + [SMALL_STATE(1486)] = 49767, + [SMALL_STATE(1487)] = 49792, + [SMALL_STATE(1488)] = 49813, + [SMALL_STATE(1489)] = 49838, + [SMALL_STATE(1490)] = 49861, + [SMALL_STATE(1491)] = 49883, + [SMALL_STATE(1492)] = 49909, + [SMALL_STATE(1493)] = 49937, + [SMALL_STATE(1494)] = 49965, + [SMALL_STATE(1495)] = 49993, + [SMALL_STATE(1496)] = 50013, + [SMALL_STATE(1497)] = 50041, + [SMALL_STATE(1498)] = 50061, + [SMALL_STATE(1499)] = 50089, + [SMALL_STATE(1500)] = 50109, + [SMALL_STATE(1501)] = 50131, + [SMALL_STATE(1502)] = 50159, + [SMALL_STATE(1503)] = 50179, + [SMALL_STATE(1504)] = 50196, + [SMALL_STATE(1505)] = 50211, + [SMALL_STATE(1506)] = 50236, + [SMALL_STATE(1507)] = 50251, + [SMALL_STATE(1508)] = 50272, + [SMALL_STATE(1509)] = 50287, + [SMALL_STATE(1510)] = 50308, + [SMALL_STATE(1511)] = 50325, + [SMALL_STATE(1512)] = 50342, + [SMALL_STATE(1513)] = 50363, + [SMALL_STATE(1514)] = 50380, + [SMALL_STATE(1515)] = 50393, + [SMALL_STATE(1516)] = 50410, + [SMALL_STATE(1517)] = 50425, + [SMALL_STATE(1518)] = 50440, + [SMALL_STATE(1519)] = 50455, + [SMALL_STATE(1520)] = 50472, + [SMALL_STATE(1521)] = 50487, + [SMALL_STATE(1522)] = 50504, + [SMALL_STATE(1523)] = 50521, + [SMALL_STATE(1524)] = 50538, + [SMALL_STATE(1525)] = 50553, + [SMALL_STATE(1526)] = 50570, + [SMALL_STATE(1527)] = 50587, + [SMALL_STATE(1528)] = 50608, + [SMALL_STATE(1529)] = 50625, + [SMALL_STATE(1530)] = 50642, + [SMALL_STATE(1531)] = 50661, + [SMALL_STATE(1532)] = 50676, + [SMALL_STATE(1533)] = 50695, + [SMALL_STATE(1534)] = 50712, + [SMALL_STATE(1535)] = 50733, + [SMALL_STATE(1536)] = 50750, + [SMALL_STATE(1537)] = 50769, + [SMALL_STATE(1538)] = 50786, + [SMALL_STATE(1539)] = 50805, + [SMALL_STATE(1540)] = 50820, + [SMALL_STATE(1541)] = 50841, + [SMALL_STATE(1542)] = 50856, + [SMALL_STATE(1543)] = 50873, + [SMALL_STATE(1544)] = 50888, + [SMALL_STATE(1545)] = 50903, + [SMALL_STATE(1546)] = 50920, + [SMALL_STATE(1547)] = 50942, + [SMALL_STATE(1548)] = 50964, + [SMALL_STATE(1549)] = 50976, + [SMALL_STATE(1550)] = 50994, + [SMALL_STATE(1551)] = 51016, + [SMALL_STATE(1552)] = 51030, + [SMALL_STATE(1553)] = 51048, + [SMALL_STATE(1554)] = 51066, + [SMALL_STATE(1555)] = 51086, + [SMALL_STATE(1556)] = 51108, + [SMALL_STATE(1557)] = 51126, + [SMALL_STATE(1558)] = 51148, + [SMALL_STATE(1559)] = 51170, + [SMALL_STATE(1560)] = 51188, + [SMALL_STATE(1561)] = 51210, + [SMALL_STATE(1562)] = 51228, + [SMALL_STATE(1563)] = 51246, + [SMALL_STATE(1564)] = 51264, + [SMALL_STATE(1565)] = 51282, + [SMALL_STATE(1566)] = 51304, + [SMALL_STATE(1567)] = 51322, + [SMALL_STATE(1568)] = 51336, + [SMALL_STATE(1569)] = 51354, + [SMALL_STATE(1570)] = 51368, + [SMALL_STATE(1571)] = 51382, + [SMALL_STATE(1572)] = 51404, + [SMALL_STATE(1573)] = 51422, + [SMALL_STATE(1574)] = 51442, + [SMALL_STATE(1575)] = 51464, + [SMALL_STATE(1576)] = 51478, + [SMALL_STATE(1577)] = 51500, + [SMALL_STATE(1578)] = 51514, + [SMALL_STATE(1579)] = 51536, + [SMALL_STATE(1580)] = 51558, + [SMALL_STATE(1581)] = 51580, + [SMALL_STATE(1582)] = 51598, + [SMALL_STATE(1583)] = 51620, + [SMALL_STATE(1584)] = 51642, + [SMALL_STATE(1585)] = 51664, + [SMALL_STATE(1586)] = 51686, + [SMALL_STATE(1587)] = 51708, + [SMALL_STATE(1588)] = 51730, + [SMALL_STATE(1589)] = 51748, + [SMALL_STATE(1590)] = 51770, + [SMALL_STATE(1591)] = 51792, + [SMALL_STATE(1592)] = 51806, + [SMALL_STATE(1593)] = 51818, + [SMALL_STATE(1594)] = 51840, + [SMALL_STATE(1595)] = 51858, + [SMALL_STATE(1596)] = 51880, + [SMALL_STATE(1597)] = 51902, + [SMALL_STATE(1598)] = 51918, + [SMALL_STATE(1599)] = 51940, + [SMALL_STATE(1600)] = 51960, + [SMALL_STATE(1601)] = 51982, + [SMALL_STATE(1602)] = 52004, + [SMALL_STATE(1603)] = 52026, + [SMALL_STATE(1604)] = 52046, + [SMALL_STATE(1605)] = 52068, + [SMALL_STATE(1606)] = 52090, + [SMALL_STATE(1607)] = 52110, + [SMALL_STATE(1608)] = 52132, + [SMALL_STATE(1609)] = 52154, + [SMALL_STATE(1610)] = 52176, + [SMALL_STATE(1611)] = 52198, + [SMALL_STATE(1612)] = 52220, + [SMALL_STATE(1613)] = 52242, + [SMALL_STATE(1614)] = 52264, + [SMALL_STATE(1615)] = 52276, + [SMALL_STATE(1616)] = 52298, + [SMALL_STATE(1617)] = 52312, + [SMALL_STATE(1618)] = 52334, + [SMALL_STATE(1619)] = 52349, + [SMALL_STATE(1620)] = 52366, + [SMALL_STATE(1621)] = 52381, + [SMALL_STATE(1622)] = 52400, + [SMALL_STATE(1623)] = 52415, + [SMALL_STATE(1624)] = 52434, + [SMALL_STATE(1625)] = 52449, + [SMALL_STATE(1626)] = 52460, + [SMALL_STATE(1627)] = 52475, + [SMALL_STATE(1628)] = 52490, + [SMALL_STATE(1629)] = 52501, + [SMALL_STATE(1630)] = 52520, + [SMALL_STATE(1631)] = 52535, + [SMALL_STATE(1632)] = 52550, + [SMALL_STATE(1633)] = 52567, + [SMALL_STATE(1634)] = 52584, + [SMALL_STATE(1635)] = 52599, + [SMALL_STATE(1636)] = 52616, + [SMALL_STATE(1637)] = 52631, + [SMALL_STATE(1638)] = 52646, + [SMALL_STATE(1639)] = 52663, + [SMALL_STATE(1640)] = 52680, + [SMALL_STATE(1641)] = 52699, + [SMALL_STATE(1642)] = 52716, + [SMALL_STATE(1643)] = 52735, + [SMALL_STATE(1644)] = 52754, + [SMALL_STATE(1645)] = 52769, + [SMALL_STATE(1646)] = 52784, + [SMALL_STATE(1647)] = 52799, + [SMALL_STATE(1648)] = 52814, + [SMALL_STATE(1649)] = 52833, + [SMALL_STATE(1650)] = 52848, + [SMALL_STATE(1651)] = 52867, + [SMALL_STATE(1652)] = 52882, + [SMALL_STATE(1653)] = 52897, + [SMALL_STATE(1654)] = 52916, + [SMALL_STATE(1655)] = 52935, + [SMALL_STATE(1656)] = 52950, + [SMALL_STATE(1657)] = 52969, + [SMALL_STATE(1658)] = 52986, + [SMALL_STATE(1659)] = 53001, + [SMALL_STATE(1660)] = 53020, + [SMALL_STATE(1661)] = 53035, + [SMALL_STATE(1662)] = 53052, + [SMALL_STATE(1663)] = 53069, + [SMALL_STATE(1664)] = 53086, + [SMALL_STATE(1665)] = 53101, + [SMALL_STATE(1666)] = 53116, + [SMALL_STATE(1667)] = 53131, + [SMALL_STATE(1668)] = 53148, + [SMALL_STATE(1669)] = 53163, + [SMALL_STATE(1670)] = 53178, + [SMALL_STATE(1671)] = 53193, + [SMALL_STATE(1672)] = 53204, + [SMALL_STATE(1673)] = 53219, + [SMALL_STATE(1674)] = 53234, + [SMALL_STATE(1675)] = 53253, + [SMALL_STATE(1676)] = 53272, + [SMALL_STATE(1677)] = 53287, + [SMALL_STATE(1678)] = 53302, + [SMALL_STATE(1679)] = 53313, + [SMALL_STATE(1680)] = 53332, + [SMALL_STATE(1681)] = 53349, + [SMALL_STATE(1682)] = 53360, + [SMALL_STATE(1683)] = 53377, + [SMALL_STATE(1684)] = 53392, + [SMALL_STATE(1685)] = 53411, + [SMALL_STATE(1686)] = 53430, + [SMALL_STATE(1687)] = 53445, + [SMALL_STATE(1688)] = 53464, + [SMALL_STATE(1689)] = 53479, + [SMALL_STATE(1690)] = 53494, + [SMALL_STATE(1691)] = 53509, + [SMALL_STATE(1692)] = 53524, + [SMALL_STATE(1693)] = 53539, + [SMALL_STATE(1694)] = 53554, + [SMALL_STATE(1695)] = 53571, + [SMALL_STATE(1696)] = 53584, + [SMALL_STATE(1697)] = 53601, + [SMALL_STATE(1698)] = 53616, + [SMALL_STATE(1699)] = 53629, + [SMALL_STATE(1700)] = 53644, + [SMALL_STATE(1701)] = 53659, + [SMALL_STATE(1702)] = 53676, + [SMALL_STATE(1703)] = 53693, + [SMALL_STATE(1704)] = 53708, + [SMALL_STATE(1705)] = 53721, + [SMALL_STATE(1706)] = 53740, + [SMALL_STATE(1707)] = 53759, + [SMALL_STATE(1708)] = 53774, + [SMALL_STATE(1709)] = 53793, + [SMALL_STATE(1710)] = 53812, + [SMALL_STATE(1711)] = 53828, + [SMALL_STATE(1712)] = 53844, + [SMALL_STATE(1713)] = 53858, + [SMALL_STATE(1714)] = 53874, + [SMALL_STATE(1715)] = 53890, + [SMALL_STATE(1716)] = 53906, + [SMALL_STATE(1717)] = 53916, + [SMALL_STATE(1718)] = 53926, + [SMALL_STATE(1719)] = 53942, + [SMALL_STATE(1720)] = 53956, + [SMALL_STATE(1721)] = 53966, + [SMALL_STATE(1722)] = 53980, + [SMALL_STATE(1723)] = 53994, + [SMALL_STATE(1724)] = 54010, + [SMALL_STATE(1725)] = 54026, + [SMALL_STATE(1726)] = 54042, + [SMALL_STATE(1727)] = 54058, + [SMALL_STATE(1728)] = 54074, + [SMALL_STATE(1729)] = 54090, + [SMALL_STATE(1730)] = 54104, + [SMALL_STATE(1731)] = 54120, + [SMALL_STATE(1732)] = 54134, + [SMALL_STATE(1733)] = 54150, + [SMALL_STATE(1734)] = 54164, + [SMALL_STATE(1735)] = 54180, + [SMALL_STATE(1736)] = 54196, + [SMALL_STATE(1737)] = 54212, + [SMALL_STATE(1738)] = 54226, + [SMALL_STATE(1739)] = 54242, + [SMALL_STATE(1740)] = 54258, + [SMALL_STATE(1741)] = 54270, + [SMALL_STATE(1742)] = 54286, + [SMALL_STATE(1743)] = 54302, + [SMALL_STATE(1744)] = 54314, + [SMALL_STATE(1745)] = 54330, + [SMALL_STATE(1746)] = 54346, + [SMALL_STATE(1747)] = 54362, + [SMALL_STATE(1748)] = 54376, + [SMALL_STATE(1749)] = 54392, + [SMALL_STATE(1750)] = 54402, + [SMALL_STATE(1751)] = 54418, + [SMALL_STATE(1752)] = 54434, + [SMALL_STATE(1753)] = 54446, + [SMALL_STATE(1754)] = 54462, + [SMALL_STATE(1755)] = 54478, + [SMALL_STATE(1756)] = 54494, + [SMALL_STATE(1757)] = 54504, + [SMALL_STATE(1758)] = 54518, + [SMALL_STATE(1759)] = 54534, + [SMALL_STATE(1760)] = 54548, + [SMALL_STATE(1761)] = 54562, + [SMALL_STATE(1762)] = 54576, + [SMALL_STATE(1763)] = 54590, + [SMALL_STATE(1764)] = 54606, + [SMALL_STATE(1765)] = 54622, + [SMALL_STATE(1766)] = 54638, + [SMALL_STATE(1767)] = 54650, + [SMALL_STATE(1768)] = 54664, + [SMALL_STATE(1769)] = 54680, + [SMALL_STATE(1770)] = 54694, + [SMALL_STATE(1771)] = 54708, + [SMALL_STATE(1772)] = 54724, + [SMALL_STATE(1773)] = 54738, + [SMALL_STATE(1774)] = 54754, + [SMALL_STATE(1775)] = 54764, + [SMALL_STATE(1776)] = 54780, + [SMALL_STATE(1777)] = 54794, + [SMALL_STATE(1778)] = 54808, + [SMALL_STATE(1779)] = 54824, + [SMALL_STATE(1780)] = 54838, + [SMALL_STATE(1781)] = 54852, + [SMALL_STATE(1782)] = 54862, + [SMALL_STATE(1783)] = 54876, + [SMALL_STATE(1784)] = 54890, + [SMALL_STATE(1785)] = 54906, + [SMALL_STATE(1786)] = 54920, + [SMALL_STATE(1787)] = 54936, + [SMALL_STATE(1788)] = 54950, + [SMALL_STATE(1789)] = 54960, + [SMALL_STATE(1790)] = 54974, + [SMALL_STATE(1791)] = 54984, + [SMALL_STATE(1792)] = 55000, + [SMALL_STATE(1793)] = 55016, + [SMALL_STATE(1794)] = 55030, + [SMALL_STATE(1795)] = 55044, + [SMALL_STATE(1796)] = 55060, + [SMALL_STATE(1797)] = 55076, + [SMALL_STATE(1798)] = 55090, + [SMALL_STATE(1799)] = 55100, + [SMALL_STATE(1800)] = 55116, + [SMALL_STATE(1801)] = 55132, + [SMALL_STATE(1802)] = 55148, + [SMALL_STATE(1803)] = 55162, + [SMALL_STATE(1804)] = 55176, + [SMALL_STATE(1805)] = 55190, + [SMALL_STATE(1806)] = 55204, + [SMALL_STATE(1807)] = 55218, + [SMALL_STATE(1808)] = 55234, + [SMALL_STATE(1809)] = 55250, + [SMALL_STATE(1810)] = 55264, + [SMALL_STATE(1811)] = 55278, + [SMALL_STATE(1812)] = 55292, + [SMALL_STATE(1813)] = 55306, + [SMALL_STATE(1814)] = 55320, + [SMALL_STATE(1815)] = 55334, + [SMALL_STATE(1816)] = 55350, + [SMALL_STATE(1817)] = 55364, + [SMALL_STATE(1818)] = 55378, + [SMALL_STATE(1819)] = 55394, + [SMALL_STATE(1820)] = 55408, + [SMALL_STATE(1821)] = 55422, + [SMALL_STATE(1822)] = 55436, + [SMALL_STATE(1823)] = 55452, + [SMALL_STATE(1824)] = 55468, + [SMALL_STATE(1825)] = 55484, + [SMALL_STATE(1826)] = 55494, + [SMALL_STATE(1827)] = 55504, + [SMALL_STATE(1828)] = 55514, + [SMALL_STATE(1829)] = 55524, + [SMALL_STATE(1830)] = 55538, + [SMALL_STATE(1831)] = 55554, + [SMALL_STATE(1832)] = 55564, + [SMALL_STATE(1833)] = 55578, + [SMALL_STATE(1834)] = 55592, + [SMALL_STATE(1835)] = 55606, + [SMALL_STATE(1836)] = 55622, + [SMALL_STATE(1837)] = 55636, + [SMALL_STATE(1838)] = 55650, + [SMALL_STATE(1839)] = 55664, + [SMALL_STATE(1840)] = 55676, + [SMALL_STATE(1841)] = 55690, + [SMALL_STATE(1842)] = 55704, + [SMALL_STATE(1843)] = 55720, + [SMALL_STATE(1844)] = 55734, + [SMALL_STATE(1845)] = 55750, + [SMALL_STATE(1846)] = 55760, + [SMALL_STATE(1847)] = 55776, + [SMALL_STATE(1848)] = 55790, + [SMALL_STATE(1849)] = 55804, + [SMALL_STATE(1850)] = 55820, + [SMALL_STATE(1851)] = 55831, + [SMALL_STATE(1852)] = 55844, + [SMALL_STATE(1853)] = 55857, + [SMALL_STATE(1854)] = 55868, + [SMALL_STATE(1855)] = 55881, + [SMALL_STATE(1856)] = 55894, + [SMALL_STATE(1857)] = 55907, + [SMALL_STATE(1858)] = 55920, + [SMALL_STATE(1859)] = 55933, + [SMALL_STATE(1860)] = 55946, + [SMALL_STATE(1861)] = 55957, + [SMALL_STATE(1862)] = 55970, + [SMALL_STATE(1863)] = 55983, + [SMALL_STATE(1864)] = 55996, + [SMALL_STATE(1865)] = 56009, + [SMALL_STATE(1866)] = 56022, + [SMALL_STATE(1867)] = 56035, + [SMALL_STATE(1868)] = 56048, + [SMALL_STATE(1869)] = 56061, + [SMALL_STATE(1870)] = 56074, + [SMALL_STATE(1871)] = 56087, + [SMALL_STATE(1872)] = 56100, + [SMALL_STATE(1873)] = 56113, + [SMALL_STATE(1874)] = 56124, + [SMALL_STATE(1875)] = 56137, + [SMALL_STATE(1876)] = 56150, + [SMALL_STATE(1877)] = 56159, + [SMALL_STATE(1878)] = 56172, + [SMALL_STATE(1879)] = 56185, + [SMALL_STATE(1880)] = 56198, + [SMALL_STATE(1881)] = 56211, + [SMALL_STATE(1882)] = 56224, + [SMALL_STATE(1883)] = 56237, + [SMALL_STATE(1884)] = 56248, + [SMALL_STATE(1885)] = 56261, + [SMALL_STATE(1886)] = 56274, + [SMALL_STATE(1887)] = 56287, + [SMALL_STATE(1888)] = 56296, + [SMALL_STATE(1889)] = 56309, + [SMALL_STATE(1890)] = 56322, + [SMALL_STATE(1891)] = 56335, + [SMALL_STATE(1892)] = 56348, + [SMALL_STATE(1893)] = 56361, + [SMALL_STATE(1894)] = 56374, + [SMALL_STATE(1895)] = 56387, + [SMALL_STATE(1896)] = 56400, + [SMALL_STATE(1897)] = 56413, + [SMALL_STATE(1898)] = 56426, + [SMALL_STATE(1899)] = 56439, + [SMALL_STATE(1900)] = 56448, + [SMALL_STATE(1901)] = 56457, + [SMALL_STATE(1902)] = 56470, + [SMALL_STATE(1903)] = 56483, + [SMALL_STATE(1904)] = 56492, + [SMALL_STATE(1905)] = 56501, + [SMALL_STATE(1906)] = 56514, + [SMALL_STATE(1907)] = 56525, + [SMALL_STATE(1908)] = 56538, + [SMALL_STATE(1909)] = 56551, + [SMALL_STATE(1910)] = 56562, + [SMALL_STATE(1911)] = 56573, + [SMALL_STATE(1912)] = 56584, + [SMALL_STATE(1913)] = 56597, + [SMALL_STATE(1914)] = 56608, + [SMALL_STATE(1915)] = 56619, + [SMALL_STATE(1916)] = 56630, + [SMALL_STATE(1917)] = 56641, + [SMALL_STATE(1918)] = 56654, + [SMALL_STATE(1919)] = 56667, + [SMALL_STATE(1920)] = 56680, + [SMALL_STATE(1921)] = 56691, + [SMALL_STATE(1922)] = 56704, + [SMALL_STATE(1923)] = 56715, + [SMALL_STATE(1924)] = 56724, + [SMALL_STATE(1925)] = 56735, + [SMALL_STATE(1926)] = 56746, + [SMALL_STATE(1927)] = 56757, + [SMALL_STATE(1928)] = 56768, + [SMALL_STATE(1929)] = 56779, + [SMALL_STATE(1930)] = 56790, + [SMALL_STATE(1931)] = 56803, + [SMALL_STATE(1932)] = 56814, + [SMALL_STATE(1933)] = 56827, + [SMALL_STATE(1934)] = 56838, + [SMALL_STATE(1935)] = 56851, + [SMALL_STATE(1936)] = 56862, + [SMALL_STATE(1937)] = 56873, + [SMALL_STATE(1938)] = 56884, + [SMALL_STATE(1939)] = 56895, + [SMALL_STATE(1940)] = 56906, + [SMALL_STATE(1941)] = 56917, + [SMALL_STATE(1942)] = 56926, + [SMALL_STATE(1943)] = 56939, + [SMALL_STATE(1944)] = 56950, + [SMALL_STATE(1945)] = 56959, + [SMALL_STATE(1946)] = 56970, + [SMALL_STATE(1947)] = 56983, + [SMALL_STATE(1948)] = 56996, + [SMALL_STATE(1949)] = 57007, + [SMALL_STATE(1950)] = 57020, + [SMALL_STATE(1951)] = 57033, + [SMALL_STATE(1952)] = 57042, + [SMALL_STATE(1953)] = 57055, + [SMALL_STATE(1954)] = 57066, + [SMALL_STATE(1955)] = 57079, + [SMALL_STATE(1956)] = 57092, + [SMALL_STATE(1957)] = 57103, + [SMALL_STATE(1958)] = 57116, + [SMALL_STATE(1959)] = 57127, + [SMALL_STATE(1960)] = 57140, + [SMALL_STATE(1961)] = 57153, + [SMALL_STATE(1962)] = 57164, + [SMALL_STATE(1963)] = 57177, + [SMALL_STATE(1964)] = 57188, + [SMALL_STATE(1965)] = 57201, + [SMALL_STATE(1966)] = 57212, + [SMALL_STATE(1967)] = 57225, + [SMALL_STATE(1968)] = 57236, + [SMALL_STATE(1969)] = 57249, + [SMALL_STATE(1970)] = 57260, + [SMALL_STATE(1971)] = 57271, + [SMALL_STATE(1972)] = 57282, + [SMALL_STATE(1973)] = 57293, + [SMALL_STATE(1974)] = 57306, + [SMALL_STATE(1975)] = 57317, + [SMALL_STATE(1976)] = 57328, + [SMALL_STATE(1977)] = 57339, + [SMALL_STATE(1978)] = 57350, + [SMALL_STATE(1979)] = 57361, + [SMALL_STATE(1980)] = 57372, + [SMALL_STATE(1981)] = 57385, + [SMALL_STATE(1982)] = 57396, + [SMALL_STATE(1983)] = 57409, + [SMALL_STATE(1984)] = 57420, + [SMALL_STATE(1985)] = 57431, + [SMALL_STATE(1986)] = 57442, + [SMALL_STATE(1987)] = 57455, + [SMALL_STATE(1988)] = 57468, + [SMALL_STATE(1989)] = 57481, + [SMALL_STATE(1990)] = 57494, + [SMALL_STATE(1991)] = 57505, + [SMALL_STATE(1992)] = 57518, + [SMALL_STATE(1993)] = 57531, + [SMALL_STATE(1994)] = 57544, + [SMALL_STATE(1995)] = 57557, + [SMALL_STATE(1996)] = 57568, + [SMALL_STATE(1997)] = 57581, + [SMALL_STATE(1998)] = 57594, + [SMALL_STATE(1999)] = 57607, + [SMALL_STATE(2000)] = 57618, + [SMALL_STATE(2001)] = 57631, + [SMALL_STATE(2002)] = 57640, + [SMALL_STATE(2003)] = 57649, + [SMALL_STATE(2004)] = 57662, + [SMALL_STATE(2005)] = 57673, + [SMALL_STATE(2006)] = 57684, + [SMALL_STATE(2007)] = 57695, + [SMALL_STATE(2008)] = 57706, + [SMALL_STATE(2009)] = 57717, + [SMALL_STATE(2010)] = 57728, + [SMALL_STATE(2011)] = 57739, + [SMALL_STATE(2012)] = 57750, + [SMALL_STATE(2013)] = 57761, + [SMALL_STATE(2014)] = 57772, + [SMALL_STATE(2015)] = 57783, + [SMALL_STATE(2016)] = 57794, + [SMALL_STATE(2017)] = 57805, + [SMALL_STATE(2018)] = 57816, + [SMALL_STATE(2019)] = 57827, + [SMALL_STATE(2020)] = 57838, + [SMALL_STATE(2021)] = 57849, + [SMALL_STATE(2022)] = 57860, + [SMALL_STATE(2023)] = 57871, + [SMALL_STATE(2024)] = 57882, + [SMALL_STATE(2025)] = 57893, + [SMALL_STATE(2026)] = 57904, + [SMALL_STATE(2027)] = 57915, + [SMALL_STATE(2028)] = 57928, + [SMALL_STATE(2029)] = 57939, + [SMALL_STATE(2030)] = 57948, + [SMALL_STATE(2031)] = 57961, + [SMALL_STATE(2032)] = 57974, + [SMALL_STATE(2033)] = 57985, + [SMALL_STATE(2034)] = 57996, + [SMALL_STATE(2035)] = 58007, + [SMALL_STATE(2036)] = 58018, + [SMALL_STATE(2037)] = 58031, + [SMALL_STATE(2038)] = 58042, + [SMALL_STATE(2039)] = 58055, + [SMALL_STATE(2040)] = 58068, + [SMALL_STATE(2041)] = 58079, + [SMALL_STATE(2042)] = 58090, + [SMALL_STATE(2043)] = 58101, + [SMALL_STATE(2044)] = 58112, + [SMALL_STATE(2045)] = 58123, + [SMALL_STATE(2046)] = 58132, + [SMALL_STATE(2047)] = 58141, + [SMALL_STATE(2048)] = 58152, + [SMALL_STATE(2049)] = 58163, + [SMALL_STATE(2050)] = 58174, + [SMALL_STATE(2051)] = 58185, + [SMALL_STATE(2052)] = 58198, + [SMALL_STATE(2053)] = 58209, + [SMALL_STATE(2054)] = 58220, + [SMALL_STATE(2055)] = 58231, + [SMALL_STATE(2056)] = 58242, + [SMALL_STATE(2057)] = 58253, + [SMALL_STATE(2058)] = 58264, + [SMALL_STATE(2059)] = 58275, + [SMALL_STATE(2060)] = 58286, + [SMALL_STATE(2061)] = 58299, + [SMALL_STATE(2062)] = 58310, + [SMALL_STATE(2063)] = 58321, + [SMALL_STATE(2064)] = 58332, + [SMALL_STATE(2065)] = 58343, + [SMALL_STATE(2066)] = 58354, + [SMALL_STATE(2067)] = 58365, + [SMALL_STATE(2068)] = 58376, + [SMALL_STATE(2069)] = 58387, + [SMALL_STATE(2070)] = 58396, + [SMALL_STATE(2071)] = 58407, + [SMALL_STATE(2072)] = 58418, + [SMALL_STATE(2073)] = 58429, + [SMALL_STATE(2074)] = 58442, + [SMALL_STATE(2075)] = 58453, + [SMALL_STATE(2076)] = 58464, + [SMALL_STATE(2077)] = 58475, + [SMALL_STATE(2078)] = 58486, + [SMALL_STATE(2079)] = 58497, + [SMALL_STATE(2080)] = 58510, + [SMALL_STATE(2081)] = 58521, + [SMALL_STATE(2082)] = 58532, + [SMALL_STATE(2083)] = 58545, + [SMALL_STATE(2084)] = 58556, + [SMALL_STATE(2085)] = 58565, + [SMALL_STATE(2086)] = 58576, + [SMALL_STATE(2087)] = 58585, + [SMALL_STATE(2088)] = 58598, + [SMALL_STATE(2089)] = 58607, + [SMALL_STATE(2090)] = 58620, + [SMALL_STATE(2091)] = 58631, + [SMALL_STATE(2092)] = 58642, + [SMALL_STATE(2093)] = 58655, + [SMALL_STATE(2094)] = 58666, + [SMALL_STATE(2095)] = 58679, + [SMALL_STATE(2096)] = 58692, + [SMALL_STATE(2097)] = 58705, + [SMALL_STATE(2098)] = 58718, + [SMALL_STATE(2099)] = 58731, + [SMALL_STATE(2100)] = 58740, + [SMALL_STATE(2101)] = 58753, + [SMALL_STATE(2102)] = 58762, + [SMALL_STATE(2103)] = 58775, + [SMALL_STATE(2104)] = 58788, + [SMALL_STATE(2105)] = 58797, + [SMALL_STATE(2106)] = 58806, + [SMALL_STATE(2107)] = 58819, + [SMALL_STATE(2108)] = 58832, + [SMALL_STATE(2109)] = 58843, + [SMALL_STATE(2110)] = 58852, + [SMALL_STATE(2111)] = 58861, + [SMALL_STATE(2112)] = 58874, + [SMALL_STATE(2113)] = 58887, + [SMALL_STATE(2114)] = 58897, + [SMALL_STATE(2115)] = 58905, + [SMALL_STATE(2116)] = 58913, + [SMALL_STATE(2117)] = 58923, + [SMALL_STATE(2118)] = 58931, + [SMALL_STATE(2119)] = 58941, + [SMALL_STATE(2120)] = 58949, + [SMALL_STATE(2121)] = 58959, + [SMALL_STATE(2122)] = 58967, + [SMALL_STATE(2123)] = 58975, + [SMALL_STATE(2124)] = 58983, + [SMALL_STATE(2125)] = 58993, + [SMALL_STATE(2126)] = 59003, + [SMALL_STATE(2127)] = 59013, + [SMALL_STATE(2128)] = 59021, + [SMALL_STATE(2129)] = 59031, + [SMALL_STATE(2130)] = 59039, + [SMALL_STATE(2131)] = 59047, + [SMALL_STATE(2132)] = 59057, + [SMALL_STATE(2133)] = 59067, + [SMALL_STATE(2134)] = 59077, + [SMALL_STATE(2135)] = 59087, + [SMALL_STATE(2136)] = 59097, + [SMALL_STATE(2137)] = 59107, + [SMALL_STATE(2138)] = 59117, + [SMALL_STATE(2139)] = 59127, + [SMALL_STATE(2140)] = 59137, + [SMALL_STATE(2141)] = 59147, + [SMALL_STATE(2142)] = 59157, + [SMALL_STATE(2143)] = 59167, + [SMALL_STATE(2144)] = 59177, + [SMALL_STATE(2145)] = 59187, + [SMALL_STATE(2146)] = 59197, + [SMALL_STATE(2147)] = 59205, + [SMALL_STATE(2148)] = 59215, + [SMALL_STATE(2149)] = 59225, + [SMALL_STATE(2150)] = 59235, + [SMALL_STATE(2151)] = 59245, + [SMALL_STATE(2152)] = 59255, + [SMALL_STATE(2153)] = 59263, + [SMALL_STATE(2154)] = 59271, + [SMALL_STATE(2155)] = 59279, + [SMALL_STATE(2156)] = 59289, + [SMALL_STATE(2157)] = 59297, + [SMALL_STATE(2158)] = 59305, + [SMALL_STATE(2159)] = 59313, + [SMALL_STATE(2160)] = 59321, + [SMALL_STATE(2161)] = 59329, + [SMALL_STATE(2162)] = 59337, + [SMALL_STATE(2163)] = 59347, + [SMALL_STATE(2164)] = 59355, + [SMALL_STATE(2165)] = 59365, + [SMALL_STATE(2166)] = 59375, + [SMALL_STATE(2167)] = 59385, + [SMALL_STATE(2168)] = 59395, + [SMALL_STATE(2169)] = 59403, + [SMALL_STATE(2170)] = 59413, + [SMALL_STATE(2171)] = 59423, + [SMALL_STATE(2172)] = 59431, + [SMALL_STATE(2173)] = 59439, + [SMALL_STATE(2174)] = 59447, + [SMALL_STATE(2175)] = 59455, + [SMALL_STATE(2176)] = 59463, + [SMALL_STATE(2177)] = 59473, + [SMALL_STATE(2178)] = 59483, + [SMALL_STATE(2179)] = 59491, + [SMALL_STATE(2180)] = 59501, + [SMALL_STATE(2181)] = 59509, + [SMALL_STATE(2182)] = 59519, + [SMALL_STATE(2183)] = 59529, + [SMALL_STATE(2184)] = 59537, + [SMALL_STATE(2185)] = 59547, + [SMALL_STATE(2186)] = 59555, + [SMALL_STATE(2187)] = 59563, + [SMALL_STATE(2188)] = 59573, + [SMALL_STATE(2189)] = 59581, + [SMALL_STATE(2190)] = 59589, + [SMALL_STATE(2191)] = 59599, + [SMALL_STATE(2192)] = 59609, + [SMALL_STATE(2193)] = 59617, + [SMALL_STATE(2194)] = 59625, + [SMALL_STATE(2195)] = 59635, + [SMALL_STATE(2196)] = 59645, + [SMALL_STATE(2197)] = 59655, + [SMALL_STATE(2198)] = 59663, + [SMALL_STATE(2199)] = 59671, + [SMALL_STATE(2200)] = 59681, + [SMALL_STATE(2201)] = 59689, + [SMALL_STATE(2202)] = 59699, + [SMALL_STATE(2203)] = 59709, + [SMALL_STATE(2204)] = 59719, + [SMALL_STATE(2205)] = 59729, + [SMALL_STATE(2206)] = 59739, + [SMALL_STATE(2207)] = 59749, + [SMALL_STATE(2208)] = 59759, + [SMALL_STATE(2209)] = 59769, + [SMALL_STATE(2210)] = 59779, + [SMALL_STATE(2211)] = 59787, + [SMALL_STATE(2212)] = 59797, + [SMALL_STATE(2213)] = 59807, + [SMALL_STATE(2214)] = 59815, + [SMALL_STATE(2215)] = 59825, + [SMALL_STATE(2216)] = 59835, + [SMALL_STATE(2217)] = 59845, + [SMALL_STATE(2218)] = 59855, + [SMALL_STATE(2219)] = 59865, + [SMALL_STATE(2220)] = 59875, + [SMALL_STATE(2221)] = 59885, + [SMALL_STATE(2222)] = 59895, + [SMALL_STATE(2223)] = 59905, + [SMALL_STATE(2224)] = 59915, + [SMALL_STATE(2225)] = 59925, + [SMALL_STATE(2226)] = 59933, + [SMALL_STATE(2227)] = 59943, + [SMALL_STATE(2228)] = 59953, + [SMALL_STATE(2229)] = 59961, + [SMALL_STATE(2230)] = 59969, + [SMALL_STATE(2231)] = 59977, + [SMALL_STATE(2232)] = 59987, + [SMALL_STATE(2233)] = 59997, + [SMALL_STATE(2234)] = 60007, + [SMALL_STATE(2235)] = 60017, + [SMALL_STATE(2236)] = 60027, + [SMALL_STATE(2237)] = 60037, + [SMALL_STATE(2238)] = 60045, + [SMALL_STATE(2239)] = 60053, + [SMALL_STATE(2240)] = 60063, + [SMALL_STATE(2241)] = 60071, + [SMALL_STATE(2242)] = 60081, + [SMALL_STATE(2243)] = 60091, + [SMALL_STATE(2244)] = 60099, + [SMALL_STATE(2245)] = 60107, + [SMALL_STATE(2246)] = 60115, + [SMALL_STATE(2247)] = 60123, + [SMALL_STATE(2248)] = 60133, + [SMALL_STATE(2249)] = 60141, + [SMALL_STATE(2250)] = 60149, + [SMALL_STATE(2251)] = 60159, + [SMALL_STATE(2252)] = 60169, + [SMALL_STATE(2253)] = 60179, + [SMALL_STATE(2254)] = 60189, + [SMALL_STATE(2255)] = 60199, + [SMALL_STATE(2256)] = 60207, + [SMALL_STATE(2257)] = 60215, + [SMALL_STATE(2258)] = 60225, + [SMALL_STATE(2259)] = 60235, + [SMALL_STATE(2260)] = 60243, + [SMALL_STATE(2261)] = 60253, + [SMALL_STATE(2262)] = 60261, + [SMALL_STATE(2263)] = 60271, + [SMALL_STATE(2264)] = 60281, + [SMALL_STATE(2265)] = 60289, + [SMALL_STATE(2266)] = 60299, + [SMALL_STATE(2267)] = 60307, + [SMALL_STATE(2268)] = 60317, + [SMALL_STATE(2269)] = 60327, + [SMALL_STATE(2270)] = 60337, + [SMALL_STATE(2271)] = 60347, + [SMALL_STATE(2272)] = 60357, + [SMALL_STATE(2273)] = 60367, + [SMALL_STATE(2274)] = 60377, + [SMALL_STATE(2275)] = 60387, + [SMALL_STATE(2276)] = 60397, + [SMALL_STATE(2277)] = 60407, + [SMALL_STATE(2278)] = 60415, + [SMALL_STATE(2279)] = 60425, + [SMALL_STATE(2280)] = 60435, + [SMALL_STATE(2281)] = 60445, + [SMALL_STATE(2282)] = 60453, + [SMALL_STATE(2283)] = 60463, + [SMALL_STATE(2284)] = 60473, + [SMALL_STATE(2285)] = 60483, + [SMALL_STATE(2286)] = 60491, + [SMALL_STATE(2287)] = 60501, + [SMALL_STATE(2288)] = 60511, + [SMALL_STATE(2289)] = 60521, + [SMALL_STATE(2290)] = 60531, + [SMALL_STATE(2291)] = 60539, + [SMALL_STATE(2292)] = 60549, + [SMALL_STATE(2293)] = 60559, + [SMALL_STATE(2294)] = 60569, + [SMALL_STATE(2295)] = 60579, + [SMALL_STATE(2296)] = 60587, + [SMALL_STATE(2297)] = 60597, + [SMALL_STATE(2298)] = 60607, + [SMALL_STATE(2299)] = 60617, + [SMALL_STATE(2300)] = 60627, + [SMALL_STATE(2301)] = 60637, + [SMALL_STATE(2302)] = 60645, + [SMALL_STATE(2303)] = 60655, + [SMALL_STATE(2304)] = 60665, + [SMALL_STATE(2305)] = 60673, + [SMALL_STATE(2306)] = 60681, + [SMALL_STATE(2307)] = 60689, + [SMALL_STATE(2308)] = 60697, + [SMALL_STATE(2309)] = 60707, + [SMALL_STATE(2310)] = 60717, + [SMALL_STATE(2311)] = 60725, + [SMALL_STATE(2312)] = 60735, + [SMALL_STATE(2313)] = 60745, + [SMALL_STATE(2314)] = 60753, + [SMALL_STATE(2315)] = 60763, + [SMALL_STATE(2316)] = 60773, + [SMALL_STATE(2317)] = 60783, + [SMALL_STATE(2318)] = 60793, + [SMALL_STATE(2319)] = 60803, + [SMALL_STATE(2320)] = 60811, + [SMALL_STATE(2321)] = 60819, + [SMALL_STATE(2322)] = 60829, + [SMALL_STATE(2323)] = 60839, + [SMALL_STATE(2324)] = 60849, + [SMALL_STATE(2325)] = 60857, + [SMALL_STATE(2326)] = 60867, + [SMALL_STATE(2327)] = 60877, + [SMALL_STATE(2328)] = 60887, + [SMALL_STATE(2329)] = 60897, + [SMALL_STATE(2330)] = 60907, + [SMALL_STATE(2331)] = 60917, + [SMALL_STATE(2332)] = 60925, + [SMALL_STATE(2333)] = 60935, + [SMALL_STATE(2334)] = 60945, + [SMALL_STATE(2335)] = 60953, + [SMALL_STATE(2336)] = 60963, + [SMALL_STATE(2337)] = 60971, + [SMALL_STATE(2338)] = 60981, + [SMALL_STATE(2339)] = 60989, + [SMALL_STATE(2340)] = 60999, + [SMALL_STATE(2341)] = 61009, + [SMALL_STATE(2342)] = 61017, + [SMALL_STATE(2343)] = 61027, + [SMALL_STATE(2344)] = 61035, + [SMALL_STATE(2345)] = 61045, + [SMALL_STATE(2346)] = 61053, + [SMALL_STATE(2347)] = 61061, + [SMALL_STATE(2348)] = 61071, + [SMALL_STATE(2349)] = 61079, + [SMALL_STATE(2350)] = 61089, + [SMALL_STATE(2351)] = 61099, + [SMALL_STATE(2352)] = 61109, + [SMALL_STATE(2353)] = 61117, + [SMALL_STATE(2354)] = 61125, + [SMALL_STATE(2355)] = 61135, + [SMALL_STATE(2356)] = 61145, + [SMALL_STATE(2357)] = 61155, + [SMALL_STATE(2358)] = 61163, + [SMALL_STATE(2359)] = 61173, + [SMALL_STATE(2360)] = 61183, + [SMALL_STATE(2361)] = 61191, + [SMALL_STATE(2362)] = 61199, + [SMALL_STATE(2363)] = 61209, + [SMALL_STATE(2364)] = 61217, + [SMALL_STATE(2365)] = 61225, + [SMALL_STATE(2366)] = 61235, + [SMALL_STATE(2367)] = 61245, + [SMALL_STATE(2368)] = 61255, + [SMALL_STATE(2369)] = 61265, + [SMALL_STATE(2370)] = 61275, + [SMALL_STATE(2371)] = 61285, + [SMALL_STATE(2372)] = 61293, + [SMALL_STATE(2373)] = 61303, + [SMALL_STATE(2374)] = 61313, + [SMALL_STATE(2375)] = 61323, + [SMALL_STATE(2376)] = 61333, + [SMALL_STATE(2377)] = 61343, + [SMALL_STATE(2378)] = 61353, + [SMALL_STATE(2379)] = 61363, + [SMALL_STATE(2380)] = 61373, + [SMALL_STATE(2381)] = 61381, + [SMALL_STATE(2382)] = 61391, + [SMALL_STATE(2383)] = 61399, + [SMALL_STATE(2384)] = 61409, + [SMALL_STATE(2385)] = 61416, + [SMALL_STATE(2386)] = 61423, + [SMALL_STATE(2387)] = 61430, + [SMALL_STATE(2388)] = 61437, + [SMALL_STATE(2389)] = 61444, + [SMALL_STATE(2390)] = 61451, + [SMALL_STATE(2391)] = 61458, + [SMALL_STATE(2392)] = 61465, + [SMALL_STATE(2393)] = 61472, + [SMALL_STATE(2394)] = 61479, + [SMALL_STATE(2395)] = 61486, + [SMALL_STATE(2396)] = 61493, + [SMALL_STATE(2397)] = 61500, + [SMALL_STATE(2398)] = 61507, + [SMALL_STATE(2399)] = 61514, + [SMALL_STATE(2400)] = 61521, + [SMALL_STATE(2401)] = 61528, + [SMALL_STATE(2402)] = 61535, + [SMALL_STATE(2403)] = 61542, + [SMALL_STATE(2404)] = 61549, + [SMALL_STATE(2405)] = 61556, + [SMALL_STATE(2406)] = 61563, + [SMALL_STATE(2407)] = 61570, + [SMALL_STATE(2408)] = 61577, + [SMALL_STATE(2409)] = 61584, + [SMALL_STATE(2410)] = 61591, + [SMALL_STATE(2411)] = 61598, + [SMALL_STATE(2412)] = 61605, + [SMALL_STATE(2413)] = 61612, + [SMALL_STATE(2414)] = 61619, + [SMALL_STATE(2415)] = 61626, + [SMALL_STATE(2416)] = 61633, + [SMALL_STATE(2417)] = 61640, + [SMALL_STATE(2418)] = 61647, + [SMALL_STATE(2419)] = 61654, + [SMALL_STATE(2420)] = 61661, + [SMALL_STATE(2421)] = 61668, + [SMALL_STATE(2422)] = 61675, + [SMALL_STATE(2423)] = 61682, + [SMALL_STATE(2424)] = 61689, + [SMALL_STATE(2425)] = 61696, + [SMALL_STATE(2426)] = 61703, + [SMALL_STATE(2427)] = 61710, + [SMALL_STATE(2428)] = 61717, + [SMALL_STATE(2429)] = 61724, + [SMALL_STATE(2430)] = 61731, + [SMALL_STATE(2431)] = 61738, + [SMALL_STATE(2432)] = 61745, + [SMALL_STATE(2433)] = 61752, + [SMALL_STATE(2434)] = 61759, + [SMALL_STATE(2435)] = 61766, + [SMALL_STATE(2436)] = 61773, + [SMALL_STATE(2437)] = 61780, + [SMALL_STATE(2438)] = 61787, + [SMALL_STATE(2439)] = 61794, + [SMALL_STATE(2440)] = 61801, + [SMALL_STATE(2441)] = 61808, + [SMALL_STATE(2442)] = 61815, + [SMALL_STATE(2443)] = 61822, + [SMALL_STATE(2444)] = 61829, + [SMALL_STATE(2445)] = 61836, + [SMALL_STATE(2446)] = 61843, + [SMALL_STATE(2447)] = 61850, + [SMALL_STATE(2448)] = 61857, + [SMALL_STATE(2449)] = 61864, + [SMALL_STATE(2450)] = 61871, + [SMALL_STATE(2451)] = 61878, + [SMALL_STATE(2452)] = 61885, + [SMALL_STATE(2453)] = 61892, + [SMALL_STATE(2454)] = 61899, + [SMALL_STATE(2455)] = 61906, + [SMALL_STATE(2456)] = 61913, + [SMALL_STATE(2457)] = 61920, + [SMALL_STATE(2458)] = 61927, + [SMALL_STATE(2459)] = 61934, + [SMALL_STATE(2460)] = 61941, + [SMALL_STATE(2461)] = 61948, + [SMALL_STATE(2462)] = 61955, + [SMALL_STATE(2463)] = 61962, + [SMALL_STATE(2464)] = 61969, + [SMALL_STATE(2465)] = 61976, + [SMALL_STATE(2466)] = 61983, + [SMALL_STATE(2467)] = 61990, + [SMALL_STATE(2468)] = 61997, + [SMALL_STATE(2469)] = 62004, + [SMALL_STATE(2470)] = 62011, + [SMALL_STATE(2471)] = 62018, + [SMALL_STATE(2472)] = 62025, + [SMALL_STATE(2473)] = 62032, + [SMALL_STATE(2474)] = 62039, + [SMALL_STATE(2475)] = 62046, + [SMALL_STATE(2476)] = 62053, + [SMALL_STATE(2477)] = 62060, + [SMALL_STATE(2478)] = 62067, + [SMALL_STATE(2479)] = 62074, + [SMALL_STATE(2480)] = 62081, + [SMALL_STATE(2481)] = 62088, + [SMALL_STATE(2482)] = 62095, + [SMALL_STATE(2483)] = 62102, + [SMALL_STATE(2484)] = 62109, + [SMALL_STATE(2485)] = 62116, + [SMALL_STATE(2486)] = 62123, + [SMALL_STATE(2487)] = 62130, + [SMALL_STATE(2488)] = 62137, + [SMALL_STATE(2489)] = 62144, + [SMALL_STATE(2490)] = 62151, + [SMALL_STATE(2491)] = 62158, + [SMALL_STATE(2492)] = 62165, + [SMALL_STATE(2493)] = 62172, + [SMALL_STATE(2494)] = 62179, + [SMALL_STATE(2495)] = 62186, + [SMALL_STATE(2496)] = 62193, + [SMALL_STATE(2497)] = 62200, + [SMALL_STATE(2498)] = 62207, + [SMALL_STATE(2499)] = 62214, + [SMALL_STATE(2500)] = 62221, + [SMALL_STATE(2501)] = 62228, + [SMALL_STATE(2502)] = 62235, + [SMALL_STATE(2503)] = 62242, + [SMALL_STATE(2504)] = 62249, + [SMALL_STATE(2505)] = 62256, + [SMALL_STATE(2506)] = 62263, + [SMALL_STATE(2507)] = 62270, + [SMALL_STATE(2508)] = 62277, + [SMALL_STATE(2509)] = 62284, + [SMALL_STATE(2510)] = 62291, + [SMALL_STATE(2511)] = 62298, + [SMALL_STATE(2512)] = 62305, + [SMALL_STATE(2513)] = 62312, + [SMALL_STATE(2514)] = 62319, + [SMALL_STATE(2515)] = 62326, + [SMALL_STATE(2516)] = 62333, + [SMALL_STATE(2517)] = 62340, + [SMALL_STATE(2518)] = 62347, + [SMALL_STATE(2519)] = 62354, + [SMALL_STATE(2520)] = 62361, + [SMALL_STATE(2521)] = 62368, + [SMALL_STATE(2522)] = 62375, + [SMALL_STATE(2523)] = 62382, + [SMALL_STATE(2524)] = 62389, + [SMALL_STATE(2525)] = 62396, + [SMALL_STATE(2526)] = 62403, + [SMALL_STATE(2527)] = 62410, + [SMALL_STATE(2528)] = 62417, + [SMALL_STATE(2529)] = 62424, + [SMALL_STATE(2530)] = 62431, + [SMALL_STATE(2531)] = 62438, + [SMALL_STATE(2532)] = 62445, + [SMALL_STATE(2533)] = 62452, + [SMALL_STATE(2534)] = 62459, + [SMALL_STATE(2535)] = 62466, + [SMALL_STATE(2536)] = 62473, + [SMALL_STATE(2537)] = 62480, + [SMALL_STATE(2538)] = 62487, + [SMALL_STATE(2539)] = 62494, + [SMALL_STATE(2540)] = 62501, + [SMALL_STATE(2541)] = 62508, + [SMALL_STATE(2542)] = 62515, + [SMALL_STATE(2543)] = 62522, + [SMALL_STATE(2544)] = 62529, + [SMALL_STATE(2545)] = 62536, + [SMALL_STATE(2546)] = 62543, + [SMALL_STATE(2547)] = 62550, + [SMALL_STATE(2548)] = 62557, + [SMALL_STATE(2549)] = 62564, + [SMALL_STATE(2550)] = 62571, + [SMALL_STATE(2551)] = 62578, + [SMALL_STATE(2552)] = 62585, + [SMALL_STATE(2553)] = 62592, + [SMALL_STATE(2554)] = 62599, + [SMALL_STATE(2555)] = 62606, + [SMALL_STATE(2556)] = 62613, + [SMALL_STATE(2557)] = 62620, + [SMALL_STATE(2558)] = 62627, + [SMALL_STATE(2559)] = 62634, + [SMALL_STATE(2560)] = 62641, + [SMALL_STATE(2561)] = 62648, + [SMALL_STATE(2562)] = 62655, + [SMALL_STATE(2563)] = 62662, + [SMALL_STATE(2564)] = 62669, + [SMALL_STATE(2565)] = 62676, + [SMALL_STATE(2566)] = 62683, + [SMALL_STATE(2567)] = 62690, + [SMALL_STATE(2568)] = 62697, + [SMALL_STATE(2569)] = 62704, + [SMALL_STATE(2570)] = 62711, + [SMALL_STATE(2571)] = 62718, + [SMALL_STATE(2572)] = 62725, + [SMALL_STATE(2573)] = 62732, + [SMALL_STATE(2574)] = 62739, + [SMALL_STATE(2575)] = 62746, + [SMALL_STATE(2576)] = 62753, + [SMALL_STATE(2577)] = 62760, + [SMALL_STATE(2578)] = 62767, + [SMALL_STATE(2579)] = 62774, + [SMALL_STATE(2580)] = 62781, + [SMALL_STATE(2581)] = 62788, + [SMALL_STATE(2582)] = 62795, + [SMALL_STATE(2583)] = 62802, + [SMALL_STATE(2584)] = 62809, + [SMALL_STATE(2585)] = 62816, + [SMALL_STATE(2586)] = 62823, + [SMALL_STATE(2587)] = 62830, + [SMALL_STATE(2588)] = 62837, + [SMALL_STATE(2589)] = 62844, + [SMALL_STATE(2590)] = 62851, + [SMALL_STATE(2591)] = 62858, + [SMALL_STATE(2592)] = 62865, + [SMALL_STATE(2593)] = 62872, + [SMALL_STATE(2594)] = 62879, + [SMALL_STATE(2595)] = 62886, + [SMALL_STATE(2596)] = 62893, + [SMALL_STATE(2597)] = 62900, + [SMALL_STATE(2598)] = 62907, + [SMALL_STATE(2599)] = 62914, + [SMALL_STATE(2600)] = 62921, + [SMALL_STATE(2601)] = 62928, + [SMALL_STATE(2602)] = 62935, + [SMALL_STATE(2603)] = 62942, + [SMALL_STATE(2604)] = 62949, + [SMALL_STATE(2605)] = 62956, + [SMALL_STATE(2606)] = 62963, + [SMALL_STATE(2607)] = 62970, + [SMALL_STATE(2608)] = 62977, + [SMALL_STATE(2609)] = 62984, + [SMALL_STATE(2610)] = 62991, + [SMALL_STATE(2611)] = 62998, +}; + +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_program, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(796), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(465), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1409), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1853), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1621), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1385), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1484), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1594), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2118), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(57), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2604), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2602), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2601), + [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2598), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1256), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1303), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1324), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1323), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1799), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(93), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2596), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(200), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2593), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2592), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1126), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2124), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2588), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(191), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(187), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(253), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2126), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(78), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2584), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2582), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2132), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2139), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2143), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(264), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(266), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(266), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(564), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(270), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(661), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(836), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2576), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(103), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(755), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1408), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2144), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1352), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1854), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1384), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1639), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(87), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(278), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(280), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(290), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(307), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 126), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 126), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 126), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 126), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2599), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2208), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2607), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2611), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2203), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(883), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(720), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [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(2450), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2269), + [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(2450), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [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(2359), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [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(2359), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(83), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2359), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(83), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 159), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 159), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), SHIFT_REPEAT(2359), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 177), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 177), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 169), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 169), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 170), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 170), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 144), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 144), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [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(526), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 133), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 133), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 132), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 132), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 163), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 163), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 179), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 179), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 10), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 10), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 58), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 58), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 16), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 16), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 123), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 123), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 133), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 133), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 83), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 83), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 132), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 132), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 8), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 8), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 25), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 25), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 179), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 179), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 160), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 160), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 43), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 43), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 44), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 44), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 85), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 85), + [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, 4), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 16), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 16), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 169), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 169), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 163), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 163), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 90), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 90), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), + [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_enum_declaration_list, 3), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 91), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 91), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 82), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 82), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 142), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 142), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 99), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 99), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 101), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 101), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 39), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 39), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 145), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 145), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 50), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 50), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 85), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 85), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 144), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 144), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 43), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 43), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 160), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 160), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 143), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 143), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 168), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 168), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 16), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 16), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 84), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 84), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 170), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 170), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 41), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 41), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2507), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1410), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(755), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1856), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2118), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(91), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2528), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(113), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2335), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1365), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2038), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1667), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 17), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 17), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 89), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 89), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 129), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 129), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 161), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 161), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 130), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 130), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 162), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 162), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 48), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 48), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 88), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 88), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 87), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 87), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 16), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 16), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 41), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 41), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 178), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 178), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 167), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 167), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 166), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 166), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 165), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 165), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 164), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 164), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 147), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 147), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 141), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 141), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 137), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 137), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 118), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 118), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 106), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 106), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 105), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 105), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 98), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 98), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 54), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 21), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 19), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1308), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1256), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1303), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1307), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1069), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1304), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1308), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1431), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1527), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1553), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1256), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1303), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1307), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(654), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1304), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1408), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 27), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 174), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 74), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 148), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 149), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 109), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 171), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 172), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 173), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 150), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 117), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 125), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 151), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 124), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 153), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 107), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 155), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 49), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 111), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 131), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 180), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1448), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1431), + [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1527), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2385), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1455), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1454), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1435), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1332), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1470), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1408), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1404), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_heredoc_body, 2), SHIFT(1342), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(230), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1330), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1423), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1342), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1635), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1423), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1408), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(230), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1334), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1423), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1635), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1423), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1448), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1455), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1454), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1435), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1337), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1470), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 121), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 120), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 156), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 157), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 80), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 122), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 8), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 25), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(317), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1362), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1539), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1539), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1662), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 176), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 181), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(384), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1371), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1371), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1632), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 175), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 70), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 81), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 158), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 79), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 38), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 158), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 81), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 175), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 9), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 119), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 81), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2587), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2223), + [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(224), + [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2353), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2327), + [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(82), + [3371] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), SHIFT(1313), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2327), + [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(82), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 11), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1416), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), + [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2488), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1316), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1317), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 33), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2507), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1318), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2488), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1315), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1319), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2488), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), + [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), SHIFT_REPEAT(2356), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), SHIFT_REPEAT(2327), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1424), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1556), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), + [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(1770), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1313), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1313), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1505), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(2082), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1402), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1873), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1872), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 3), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(150), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 4), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 13), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(144), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 18), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 24), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 28), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 30), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 29), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 46), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 47), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(154), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(143), + [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1406), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 51), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 59), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 61), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 66), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 67), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(769), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 69), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 71), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 72), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 73), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 47), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(807), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 47), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 75), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(152), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 102), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 35), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 32), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 108), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 113), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 114), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 116), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(156), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(404), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 128), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 128), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1694), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 152), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1759), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2176), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 154), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 127), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2176), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 115), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 112), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 110), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2507), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 9), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 70), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 68), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 65), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 40), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 52), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 60), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 14), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 92), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 100), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 103), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4730] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 146), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__automatic_semicolon = 0, + ts_external_token_encapsed_string_chars = 1, + ts_external_token_encapsed_string_chars_after_variable = 2, + ts_external_token_execution_string_chars = 3, + ts_external_token_execution_string_chars_after_variable = 4, + ts_external_token_encapsed_string_chars_heredoc = 5, + ts_external_token_encapsed_string_chars_after_variable_heredoc = 6, + ts_external_token__eof = 7, + ts_external_token_heredoc_start = 8, + ts_external_token_heredoc_end = 9, + ts_external_token_nowdoc_string = 10, + ts_external_token_sentinel_error = 11, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token_encapsed_string_chars] = sym_encapsed_string_chars, + [ts_external_token_encapsed_string_chars_after_variable] = sym_encapsed_string_chars_after_variable, + [ts_external_token_execution_string_chars] = sym_execution_string_chars, + [ts_external_token_execution_string_chars_after_variable] = sym_execution_string_chars_after_variable, + [ts_external_token_encapsed_string_chars_heredoc] = sym_encapsed_string_chars_heredoc, + [ts_external_token_encapsed_string_chars_after_variable_heredoc] = sym_encapsed_string_chars_after_variable_heredoc, + [ts_external_token__eof] = sym__eof, + [ts_external_token_heredoc_start] = sym_heredoc_start, + [ts_external_token_heredoc_end] = sym_heredoc_end, + [ts_external_token_nowdoc_string] = sym_nowdoc_string, + [ts_external_token_sentinel_error] = sym_sentinel_error, +}; + +static const bool ts_external_scanner_states[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__eof] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token_heredoc_end] = true, + [ts_external_token_nowdoc_string] = true, + [ts_external_token_sentinel_error] = true, + }, + [2] = { + [ts_external_token__automatic_semicolon] = true, + }, + [3] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + [ts_external_token_heredoc_end] = true, + }, + [4] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + }, + [5] = { + [ts_external_token_encapsed_string_chars] = true, + }, + [6] = { + [ts_external_token_execution_string_chars] = true, + }, + [7] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + [ts_external_token_encapsed_string_chars_after_variable_heredoc] = true, + [ts_external_token_heredoc_end] = true, + }, + [8] = { + [ts_external_token_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, + [ts_external_token_nowdoc_string] = true, + }, + [11] = { + [ts_external_token_heredoc_start] = true, + }, + [12] = { + [ts_external_token_heredoc_end] = true, + }, + [13] = { + [ts_external_token_nowdoc_string] = true, + }, +}; + +#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/php_only/src/scanner.c b/php_only/src/scanner.c new file mode 100644 index 00000000..d08fe4d5 --- /dev/null +++ b/php_only/src/scanner.c @@ -0,0 +1,17 @@ +#include "../../common/scanner.h" + +void *tree_sitter_php_only_external_scanner_create() { + return external_scanner_create(); +} +unsigned tree_sitter_php_only_external_scanner_serialize(void *p, char *b) { + return external_scanner_serialize(p, b); +} +void tree_sitter_php_only_external_scanner_deserialize(void *p, const char *b, unsigned n) { + external_scanner_deserialize(p, b, n); +} +bool tree_sitter_php_only_external_scanner_scan(void *p, TSLexer *l, const bool *s) { + return external_scanner_scan(p, l, s); +} +void tree_sitter_php_only_external_scanner_destroy(void *p) { + external_scanner_destroy(p); +} diff --git a/php_only/src/tree_sitter/parser.h b/php_only/src/tree_sitter/parser.h new file mode 100644 index 00000000..d2103259 --- /dev/null +++ b/php_only/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 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +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; \ + eof = lexer->eof(lexer); + +#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/php_only/test/corpus/common b/php_only/test/corpus/common new file mode 120000 index 00000000..d3a2b72c --- /dev/null +++ b/php_only/test/corpus/common @@ -0,0 +1 @@ +../../../common/test/corpus \ No newline at end of file diff --git a/php_only/test/corpus/php_only.txt b/php_only/test/corpus/php_only.txt new file mode 100644 index 00000000..e0b69825 --- /dev/null +++ b/php_only/test/corpus/php_only.txt @@ -0,0 +1,59 @@ +============================== +If statement +============================== + +if ($a==0) { + echo "bad"; +} elseif ($a==3) { + echo "bad"; +} else { + echo "good"; +} + +--- + +(program + (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))))))) + +========================================= +Class +========================================= + +class A { + public function a() {} + abstract public function b(); +} + +--- + +(program + (class_declaration + (name) + (declaration_list + (method_declaration + (visibility_modifier) + (name) + (formal_parameters) + (compound_statement) + ) + (method_declaration + (abstract_modifier) + (visibility_modifier) + (name) + (formal_parameters) + ) + ) + ) +) + diff --git a/test/highlight/keywords.php b/php_only/test/highlight/keywords.php similarity index 100% rename from test/highlight/keywords.php rename to php_only/test/highlight/keywords.php diff --git a/test/highlight/literals.php b/php_only/test/highlight/literals.php similarity index 100% rename from test/highlight/literals.php rename to php_only/test/highlight/literals.php diff --git a/test/highlight/types.php b/php_only/test/highlight/types.php similarity index 100% rename from test/highlight/types.php rename to php_only/test/highlight/types.php